From e402a0c078fc13449e70d98023280554355d5b8d Mon Sep 17 00:00:00 2001 From: Nick Masters Date: Sun, 4 Nov 2012 15:22:32 +0000 Subject: [PATCH] Spaces around ! sign --- lib/Doctrine/ORM/Tools/EntityGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php index 1ba44ba63..977cc0f95 100644 --- a/lib/Doctrine/ORM/Tools/EntityGenerator.php +++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php @@ -1213,7 +1213,7 @@ public function __construct() $lines = explode("\n", $code); foreach ($lines as $key => $value) { - if (!empty($value)) { + if ( ! empty($value)) { $lines[$key] = str_repeat($this->spaces, $num) . $lines[$key]; } }