1
0
mirror of synced 2025-01-18 06:21:40 +03:00
This commit is contained in:
Fabio B. Silva 2012-11-27 16:58:48 -02:00
parent d1dc72b65a
commit bac92f4d3e

View File

@ -1265,7 +1265,7 @@ public function __construct()
*/ */
protected function getInheritanceTypeString($type) protected function getInheritanceTypeString($type)
{ {
if( ! isset(self::$inheritanceTypeMap[$type])) { if ( ! isset(self::$inheritanceTypeMap[$type])) {
throw new \InvalidArgumentException(sprintf('Invalid provided InheritanceType: %s', $type)); throw new \InvalidArgumentException(sprintf('Invalid provided InheritanceType: %s', $type));
} }
@ -1279,7 +1279,7 @@ public function __construct()
*/ */
protected function getChangeTrackingPolicyString($type) protected function getChangeTrackingPolicyString($type)
{ {
if( ! isset(self::$changeTrackingPolicyMap[$type])) { if ( ! isset(self::$changeTrackingPolicyMap[$type])) {
throw new \InvalidArgumentException(sprintf('Invalid provided ChangeTrackingPolicy: %s', $type)); throw new \InvalidArgumentException(sprintf('Invalid provided ChangeTrackingPolicy: %s', $type));
} }
@ -1293,7 +1293,7 @@ public function __construct()
*/ */
protected function getIdGeneratorTypeString($type) protected function getIdGeneratorTypeString($type)
{ {
if( ! isset(self::$generatorStrategyMap[$type])) { if ( ! isset(self::$generatorStrategyMap[$type])) {
throw new \InvalidArgumentException(sprintf('Invalid provided IdGeneratorType: %s', $type)); throw new \InvalidArgumentException(sprintf('Invalid provided IdGeneratorType: %s', $type));
} }