@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | public function __construct($reader, $paths = null) |
| 80 | 80 | { |
| 81 | 81 | $this->reader = $reader; |
| 82 | - if (! $paths) { |
|
| 82 | + if (!$paths) { |
|
| 83 | 83 | return; |
| 84 | 84 | } |
| 85 | 85 | |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | return $this->classNames; |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | - if (! $this->paths) { |
|
| 195 | + if (!$this->paths) { |
|
| 196 | 196 | throw MappingException::pathRequired(); |
| 197 | 197 | } |
| 198 | 198 | |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | $includedFiles = []; |
| 201 | 201 | |
| 202 | 202 | foreach ($this->paths as $path) { |
| 203 | - if (! is_dir($path)) { |
|
| 203 | + if (!is_dir($path)) { |
|
| 204 | 204 | throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath($path); |
| 205 | 205 | } |
| 206 | 206 | |
@@ -209,14 +209,14 @@ discard block |
||
| 209 | 209 | new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS), |
| 210 | 210 | RecursiveIteratorIterator::LEAVES_ONLY |
| 211 | 211 | ), |
| 212 | - '/^.+' . preg_quote($this->fileExtension) . '$/i', |
|
| 212 | + '/^.+'.preg_quote($this->fileExtension).'$/i', |
|
| 213 | 213 | RecursiveRegexIterator::GET_MATCH |
| 214 | 214 | ); |
| 215 | 215 | |
| 216 | 216 | foreach ($iterator as $file) { |
| 217 | 217 | $sourceFile = $file[0]; |
| 218 | 218 | |
| 219 | - if (! preg_match('(^phar:)i', $sourceFile)) { |
|
| 219 | + if (!preg_match('(^phar:)i', $sourceFile)) { |
|
| 220 | 220 | $sourceFile = realpath($sourceFile); |
| 221 | 221 | } |
| 222 | 222 | |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | foreach ($declared as $className) { |
| 241 | 241 | $rc = new ReflectionClass($className); |
| 242 | 242 | $sourceFile = $rc->getFileName(); |
| 243 | - if (! in_array($sourceFile, $includedFiles) || $this->isTransient($className)) { |
|
| 243 | + if (!in_array($sourceFile, $includedFiles) || $this->isTransient($className)) { |
|
| 244 | 244 | continue; |
| 245 | 245 | } |
| 246 | 246 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | return $this->classNames; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - if (! $this->paths) { |
|
| 77 | + if (!$this->paths) { |
|
| 78 | 78 | throw MappingException::pathRequired(); |
| 79 | 79 | } |
| 80 | 80 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | $includedFiles = []; |
| 83 | 83 | |
| 84 | 84 | foreach ($this->paths as $path) { |
| 85 | - if (! is_dir($path)) { |
|
| 85 | + if (!is_dir($path)) { |
|
| 86 | 86 | throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath($path); |
| 87 | 87 | } |
| 88 | 88 | |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | foreach ($declared as $className) { |
| 108 | 108 | $rc = new ReflectionClass($className); |
| 109 | 109 | $sourceFile = $rc->getFileName(); |
| 110 | - if (! in_array($sourceFile, $includedFiles) || $this->isTransient($className)) { |
|
| 110 | + if (!in_array($sourceFile, $includedFiles) || $this->isTransient($className)) { |
|
| 111 | 111 | continue; |
| 112 | 112 | } |
| 113 | 113 | |
@@ -124,6 +124,6 @@ discard block |
||
| 124 | 124 | */ |
| 125 | 125 | public function isTransient($className) |
| 126 | 126 | { |
| 127 | - return ! method_exists($className, 'loadMetadata'); |
|
| 127 | + return !method_exists($className, 'loadMetadata'); |
|
| 128 | 128 | } |
| 129 | 129 | } |
@@ -102,7 +102,7 @@ |
||
| 102 | 102 | */ |
| 103 | 103 | private function assertValidField($field) |
| 104 | 104 | { |
| 105 | - if (! isset($this->entityChangeSet[$field])) { |
|
| 105 | + if (!isset($this->entityChangeSet[$field])) { |
|
| 106 | 106 | throw new InvalidArgumentException(sprintf( |
| 107 | 107 | 'Field "%s" is not a valid field of the entity "%s" in PreUpdateEventArgs.', |
| 108 | 108 | $field, |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | $name = $this->defaultConnection; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - if (! isset($this->connections[$name])) { |
|
| 93 | + if (!isset($this->connections[$name])) { |
|
| 94 | 94 | throw new InvalidArgumentException(sprintf('Doctrine %s Connection named "%s" does not exist.', $this->name, $name)); |
| 95 | 95 | } |
| 96 | 96 | |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | $name = $this->defaultManager; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - if (! isset($this->managers[$name])) { |
|
| 148 | + if (!isset($this->managers[$name])) { |
|
| 149 | 149 | throw new InvalidArgumentException(sprintf('Doctrine %s Manager named "%s" does not exist.', $this->name, $name)); |
| 150 | 150 | } |
| 151 | 151 | |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | // Check for namespace alias |
| 161 | 161 | if (strpos($class, ':') !== false) { |
| 162 | 162 | [$namespaceAlias, $simpleClassName] = explode(':', $class, 2); |
| 163 | - $class = $this->getAliasNamespace($namespaceAlias) . '\\' . $simpleClassName; |
|
| 163 | + $class = $this->getAliasNamespace($namespaceAlias).'\\'.$simpleClassName; |
|
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | $proxyClass = new ReflectionClass($class); |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | if ($proxyClass->implementsInterface($this->proxyInterfaceName)) { |
| 169 | 169 | $parentClass = $proxyClass->getParentClass(); |
| 170 | 170 | |
| 171 | - if (! $parentClass) { |
|
| 171 | + if (!$parentClass) { |
|
| 172 | 172 | return null; |
| 173 | 173 | } |
| 174 | 174 | |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | foreach ($this->managers as $id) { |
| 179 | 179 | $manager = $this->getService($id); |
| 180 | 180 | |
| 181 | - if (! $manager->getMetadataFactory()->isTransient($class)) { |
|
| 181 | + if (!$manager->getMetadataFactory()->isTransient($class)) { |
|
| 182 | 182 | return $manager; |
| 183 | 183 | } |
| 184 | 184 | } |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | $name = $this->defaultManager; |
| 223 | 223 | } |
| 224 | 224 | |
| 225 | - if (! isset($this->managers[$name])) { |
|
| 225 | + if (!isset($this->managers[$name])) { |
|
| 226 | 226 | throw new InvalidArgumentException(sprintf('Doctrine %s Manager named "%s" does not exist.', $this->name, $name)); |
| 227 | 227 | } |
| 228 | 228 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | public function injectObjectManager(ObjectManager $objectManager, ClassMetadata $classMetadata) |
| 77 | 77 | { |
| 78 | 78 | if ($objectManager !== self::$objectManager) { |
| 79 | - throw new RuntimeException('Trying to use PersistentObject with different ObjectManager instances. ' . |
|
| 79 | + throw new RuntimeException('Trying to use PersistentObject with different ObjectManager instances. '. |
|
| 80 | 80 | 'Was PersistentObject::setObjectManager() called?'); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -96,17 +96,17 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | private function set($field, $args) |
| 98 | 98 | { |
| 99 | - if ($this->cm->hasField($field) && ! $this->cm->isIdentifier($field)) { |
|
| 99 | + if ($this->cm->hasField($field) && !$this->cm->isIdentifier($field)) { |
|
| 100 | 100 | $this->$field = $args[0]; |
| 101 | 101 | } elseif ($this->cm->hasAssociation($field) && $this->cm->isSingleValuedAssociation($field)) { |
| 102 | 102 | $targetClass = $this->cm->getAssociationTargetClass($field); |
| 103 | - if (! ($args[0] instanceof $targetClass) && $args[0] !== null) { |
|
| 104 | - throw new InvalidArgumentException("Expected persistent object of type '" . $targetClass . "'"); |
|
| 103 | + if (!($args[0] instanceof $targetClass) && $args[0] !== null) { |
|
| 104 | + throw new InvalidArgumentException("Expected persistent object of type '".$targetClass."'"); |
|
| 105 | 105 | } |
| 106 | 106 | $this->$field = $args[0]; |
| 107 | 107 | $this->completeOwningSide($field, $targetClass, $args[0]); |
| 108 | 108 | } else { |
| 109 | - throw new BadMethodCallException("no field with name '" . $field . "' exists on '" . $this->cm->getName() . "'"); |
|
| 109 | + throw new BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getName()."'"); |
|
| 110 | 110 | } |
| 111 | 111 | } |
| 112 | 112 | |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | return $this->$field; |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - throw new BadMethodCallException("no field with name '" . $field . "' exists on '" . $this->cm->getName() . "'"); |
|
| 128 | + throw new BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getName()."'"); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
@@ -141,14 +141,14 @@ discard block |
||
| 141 | 141 | { |
| 142 | 142 | // add this object on the owning side as well, for obvious infinite recursion |
| 143 | 143 | // reasons this is only done when called on the inverse side. |
| 144 | - if (! $this->cm->isAssociationInverseSide($field)) { |
|
| 144 | + if (!$this->cm->isAssociationInverseSide($field)) { |
|
| 145 | 145 | return; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | $mappedByField = $this->cm->getAssociationMappedByTargetField($field); |
| 149 | 149 | $targetMetadata = self::$objectManager->getClassMetadata($targetClass); |
| 150 | 150 | |
| 151 | - $setter = ($targetMetadata->isCollectionValuedAssociation($mappedByField) ? 'add' : 'set') . $mappedByField; |
|
| 151 | + $setter = ($targetMetadata->isCollectionValuedAssociation($mappedByField) ? 'add' : 'set').$mappedByField; |
|
| 152 | 152 | $targetObject->$setter($this); |
| 153 | 153 | } |
| 154 | 154 | |
@@ -165,15 +165,15 @@ discard block |
||
| 165 | 165 | */ |
| 166 | 166 | private function add($field, $args) |
| 167 | 167 | { |
| 168 | - if (! $this->cm->hasAssociation($field) || ! $this->cm->isCollectionValuedAssociation($field)) { |
|
| 169 | - throw new BadMethodCallException('There is no method add' . $field . '() on ' . $this->cm->getName()); |
|
| 168 | + if (!$this->cm->hasAssociation($field) || !$this->cm->isCollectionValuedAssociation($field)) { |
|
| 169 | + throw new BadMethodCallException('There is no method add'.$field.'() on '.$this->cm->getName()); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | $targetClass = $this->cm->getAssociationTargetClass($field); |
| 173 | - if (! ($args[0] instanceof $targetClass)) { |
|
| 174 | - throw new InvalidArgumentException("Expected persistent object of type '" . $targetClass . "'"); |
|
| 173 | + if (!($args[0] instanceof $targetClass)) { |
|
| 174 | + throw new InvalidArgumentException("Expected persistent object of type '".$targetClass."'"); |
|
| 175 | 175 | } |
| 176 | - if (! ($this->$field instanceof Collection)) { |
|
| 176 | + if (!($this->$field instanceof Collection)) { |
|
| 177 | 177 | $this->$field = new ArrayCollection($this->$field ?: []); |
| 178 | 178 | } |
| 179 | 179 | $this->$field->add($args[0]); |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | return; |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - if (! self::$objectManager) { |
|
| 196 | + if (!self::$objectManager) { |
|
| 197 | 197 | throw new RuntimeException('No runtime object manager set. Call PersistentObject#setObjectManager().'); |
| 198 | 198 | } |
| 199 | 199 | |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | } elseif ($command === 'add') { |
| 224 | 224 | $this->add($field, $args); |
| 225 | 225 | } else { |
| 226 | - throw new BadMethodCallException('There is no method ' . $method . ' on ' . $this->cm->getName()); |
|
| 226 | + throw new BadMethodCallException('There is no method '.$method.' on '.$this->cm->getName()); |
|
| 227 | 227 | } |
| 228 | 228 | } |
| 229 | 229 | } |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | public function testGetParentClasses() |
| 35 | 35 | { |
| 36 | 36 | $classes = $this->reflectionService->getParentClasses(self::class); |
| 37 | - self::assertTrue(count($classes) === 0, 'The test class ' . self::class . ' should have no parents according to static reflection.'); |
|
| 37 | + self::assertTrue(count($classes) === 0, 'The test class '.self::class.' should have no parents according to static reflection.'); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | public function testGetReflectionClass() |
@@ -38,13 +38,13 @@ |
||
| 38 | 38 | public function testGetParentClasses() |
| 39 | 39 | { |
| 40 | 40 | $classes = $this->reflectionService->getParentClasses(self::class); |
| 41 | - self::assertTrue(count($classes) >= 1, 'The test class ' . self::class . ' should have at least one parent.'); |
|
| 41 | + self::assertTrue(count($classes) >= 1, 'The test class '.self::class.' should have at least one parent.'); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | public function testGetParentClassesForAbsentClass() |
| 45 | 45 | { |
| 46 | 46 | $this->expectException(MappingException::class); |
| 47 | - $this->reflectionService->getParentClasses(__NAMESPACE__ . '\AbsentClass'); |
|
| 47 | + $this->reflectionService->getParentClasses(__NAMESPACE__.'\AbsentClass'); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | public function testGetReflectionClass() |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | public function testGetMetadataForAbsentClass() |
| 48 | 48 | { |
| 49 | 49 | $this->expectException(MappingException::class); |
| 50 | - $this->cmf->getMetadataFor(__NAMESPACE__ . '\AbsentClass'); |
|
| 50 | + $this->cmf->getMetadataFor(__NAMESPACE__.'\AbsentClass'); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | public function testGetParentMetadata() |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | { |
| 64 | 64 | $metadata = $this->createMock(ClassMetadata::class); |
| 65 | 65 | $cache = new ArrayCache(); |
| 66 | - $cache->save(ChildEntity::class . '$CLASSMETADATA', $metadata); |
|
| 66 | + $cache->save(ChildEntity::class.'$CLASSMETADATA', $metadata); |
|
| 67 | 67 | |
| 68 | 68 | $this->cmf->setCacheDriver($cache); |
| 69 | 69 | |
@@ -77,14 +77,14 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | $loadedMetadata = $this->cmf->getMetadataFor(ChildEntity::class); |
| 79 | 79 | |
| 80 | - self::assertSame($loadedMetadata, $cache->fetch(ChildEntity::class . '$CLASSMETADATA')); |
|
| 80 | + self::assertSame($loadedMetadata, $cache->fetch(ChildEntity::class.'$CLASSMETADATA')); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | public function testGetAliasedMetadata() |
| 84 | 84 | { |
| 85 | 85 | $this->cmf->getMetadataFor('prefix:ChildEntity'); |
| 86 | 86 | |
| 87 | - self::assertTrue($this->cmf->hasMetadataFor(__NAMESPACE__ . '\ChildEntity')); |
|
| 87 | + self::assertTrue($this->cmf->hasMetadataFor(__NAMESPACE__.'\ChildEntity')); |
|
| 88 | 88 | self::assertTrue($this->cmf->hasMetadataFor('prefix:ChildEntity')); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | { |
| 114 | 114 | $classMetadata = $this->createMock(ClassMetadata::class); |
| 115 | 115 | |
| 116 | - $this->cmf->fallbackCallback = static function () use ($classMetadata) { |
|
| 116 | + $this->cmf->fallbackCallback = static function() use ($classMetadata) { |
|
| 117 | 117 | return $classMetadata; |
| 118 | 118 | }; |
| 119 | 119 | |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | |
| 125 | 125 | public function testWillFailOnFallbackFailureWithNotLoadedMetadata() |
| 126 | 126 | { |
| 127 | - $this->cmf->fallbackCallback = static function () { |
|
| 127 | + $this->cmf->fallbackCallback = static function() { |
|
| 128 | 128 | return null; |
| 129 | 129 | }; |
| 130 | 130 | |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | |
| 188 | 188 | protected function getFqcnFromAlias($namespaceAlias, $simpleClassName) |
| 189 | 189 | { |
| 190 | - return __NAMESPACE__ . '\\' . $simpleClassName; |
|
| 190 | + return __NAMESPACE__.'\\'.$simpleClassName; |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | protected function initialize() |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | |
| 219 | 219 | protected function onNotFoundMetadata($className) |
| 220 | 220 | { |
| 221 | - if (! $this->fallbackCallback) { |
|
| 221 | + if (!$this->fallbackCallback) { |
|
| 222 | 222 | return null; |
| 223 | 223 | } |
| 224 | 224 | |
@@ -16,12 +16,12 @@ |
||
| 16 | 16 | error_reporting(E_ALL | E_STRICT); |
| 17 | 17 | |
| 18 | 18 | // register silently failing autoloader |
| 19 | -spl_autoload_register(static function ($class) { |
|
| 19 | +spl_autoload_register(static function($class) { |
|
| 20 | 20 | if (strpos($class, 'Doctrine\Tests\\') !== 0) { |
| 21 | 21 | return; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | - $path = __DIR__ . '/../../' . strtr($class, '\\', '/') . '.php'; |
|
| 24 | + $path = __DIR__.'/../../'.strtr($class, '\\', '/').'.php'; |
|
| 25 | 25 | if (is_file($path) && is_readable($path)) { |
| 26 | 26 | require_once $path; |
| 27 | 27 | |