From bac92f4d3ebfc35d7ba5045cb25339c4fec2d6ca Mon Sep 17 00:00:00 2001 From: "Fabio B. Silva" Date: Tue, 27 Nov 2012 16:58:48 -0200 Subject: [PATCH] Fix CS --- lib/Doctrine/ORM/Tools/EntityGenerator.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php index db2e834c4..4a14871d1 100644 --- a/lib/Doctrine/ORM/Tools/EntityGenerator.php +++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php @@ -1265,7 +1265,7 @@ public function __construct() */ protected function getInheritanceTypeString($type) { - if( ! isset(self::$inheritanceTypeMap[$type])) { + if ( ! isset(self::$inheritanceTypeMap[$type])) { throw new \InvalidArgumentException(sprintf('Invalid provided InheritanceType: %s', $type)); } @@ -1279,7 +1279,7 @@ public function __construct() */ protected function getChangeTrackingPolicyString($type) { - if( ! isset(self::$changeTrackingPolicyMap[$type])) { + if ( ! isset(self::$changeTrackingPolicyMap[$type])) { throw new \InvalidArgumentException(sprintf('Invalid provided ChangeTrackingPolicy: %s', $type)); } @@ -1293,7 +1293,7 @@ public function __construct() */ protected function getIdGeneratorTypeString($type) { - if( ! isset(self::$generatorStrategyMap[$type])) { + if ( ! isset(self::$generatorStrategyMap[$type])) { throw new \InvalidArgumentException(sprintf('Invalid provided IdGeneratorType: %s', $type)); }