Merge pull request #110 from enigmatic-user/master

Removed space after "@method static ..."
This commit is contained in:
Barry vd. Heuvel
2014-09-03 08:57:31 +02:00
+1 -1
View File
@@ -444,7 +444,7 @@ class ModelsCommand extends Command
continue;
}
$arguments = implode(', ', $method['arguments']);
$tag = Tag::createInstance("@method static {$method['type']} {$name}({$arguments}) ", $phpdoc);
$tag = Tag::createInstance("@method static {$method['type']} {$name}({$arguments})", $phpdoc);
$phpdoc->appendTag($tag);
}