@@ -10,7 +10,7 @@ |
||
| 10 | 10 | |
| 11 | 11 | class_alias( |
| 12 | 12 | \Doctrine\Persistence\Mapping\Driver\PHPDriver::class, |
| 13 | - __NAMESPACE__ . '\PHPDriver' |
|
| 13 | + __NAMESPACE__.'\PHPDriver' |
|
| 14 | 14 | ); |
| 15 | 15 | |
| 16 | 16 | if (false) { |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | |
| 11 | 11 | class_alias( |
| 12 | 12 | \Doctrine\Persistence\Mapping\Driver\FileDriver::class, |
| 13 | - __NAMESPACE__ . '\FileDriver' |
|
| 13 | + __NAMESPACE__.'\FileDriver' |
|
| 14 | 14 | ); |
| 15 | 15 | |
| 16 | 16 | if (false) { |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | |
| 11 | 11 | class_alias( |
| 12 | 12 | \Doctrine\Persistence\Mapping\Driver\AnnotationDriver::class, |
| 13 | - __NAMESPACE__ . '\AnnotationDriver' |
|
| 13 | + __NAMESPACE__.'\AnnotationDriver' |
|
| 14 | 14 | ); |
| 15 | 15 | |
| 16 | 16 | if (false) { |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | |
| 11 | 11 | class_alias( |
| 12 | 12 | \Doctrine\Persistence\Mapping\Driver\SymfonyFileLocator::class, |
| 13 | - __NAMESPACE__ . '\SymfonyFileLocator' |
|
| 13 | + __NAMESPACE__.'\SymfonyFileLocator' |
|
| 14 | 14 | ); |
| 15 | 15 | |
| 16 | 16 | if (false) { |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | public function getParentClasses($class) |
| 35 | 35 | { |
| 36 | - if (! class_exists($class)) { |
|
| 36 | + if (!class_exists($class)) { |
|
| 37 | 37 | throw MappingException::nonExistingClass($class); |
| 38 | 38 | } |
| 39 | 39 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | if ($reflectionProperty->isPublic()) { |
| 79 | 79 | $reflectionProperty = new RuntimePublicReflectionProperty($class, $property); |
| 80 | - } elseif ($this->supportsTypedPropertiesWorkaround && ! array_key_exists($property, $this->getClass($class)->getDefaultProperties())) { |
|
| 80 | + } elseif ($this->supportsTypedPropertiesWorkaround && !array_key_exists($property, $this->getClass($class)->getDefaultProperties())) { |
|
| 81 | 81 | $reflectionProperty = new TypedNoDefaultReflectionProperty($class, $property); |
| 82 | 82 | } |
| 83 | 83 | |