From 10e16a0bdc234c9a7e4efc7effc9a12569e20798 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Ihrens Date: Wed, 3 Sep 2014 08:51:03 +0200 Subject: [PATCH] Removed space after "@method static ..." According to PSR-2, "there MUST NOT be trailing whitespace at the end of non-blank lines" (http://www.php-fig.org/psr/psr-2/). My IDE is checking for this, and I always have to remove the spaces manually... ;-) --- src/Console/ModelsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/ModelsCommand.php b/src/Console/ModelsCommand.php index 02f3edc..66bcd03 100644 --- a/src/Console/ModelsCommand.php +++ b/src/Console/ModelsCommand.php @@ -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); }