@@ -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) { |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public function getParentClasses($class) |
34 | 34 | { |
35 | - if (! class_exists($class)) { |
|
35 | + if (!class_exists($class)) { |
|
36 | 36 | throw MappingException::nonExistingClass($class); |
37 | 37 | } |
38 | 38 | |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | { |
75 | 75 | $reflectionProperty = new ReflectionProperty($class, $property); |
76 | 76 | |
77 | - if ($this->supportsTypedPropertiesWorkaround && ! array_key_exists($property, $this->getClass($class)->getDefaultProperties())) { |
|
77 | + if ($this->supportsTypedPropertiesWorkaround && !array_key_exists($property, $this->getClass($class)->getDefaultProperties())) { |
|
78 | 78 | $reflectionProperty = new TypedNoDefaultReflectionProperty($class, $property); |
79 | 79 | } elseif ($reflectionProperty->isPublic()) { |
80 | 80 | $reflectionProperty = new RuntimePublicReflectionProperty($class, $property); |