@@ -13,7 +13,7 @@ |
||
| 13 | 13 | public function loadMetadataForClass(\ReflectionClass $class): ?BaseClassMetadata |
| 14 | 14 | { |
| 15 | 15 | $classMetadata = new ClassMetadata($name = $class->name); |
| 16 | - $fileResource = $class->getFilename(); |
|
| 16 | + $fileResource = $class->getFilename(); |
|
| 17 | 17 | if (false !== $fileResource) { |
| 18 | 18 | $classMetadata->fileResources[] = $fileResource; |
| 19 | 19 | } |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | $classMetadata = $this->delegate->loadMetadataForClass($class); |
| 84 | 84 | |
| 85 | 85 | // Abort if the given class is not a mapped entity |
| 86 | - if (!$doctrineMetadata = $this->tryLoadingDoctrineMetadata($class->name)) { |
|
| 86 | + if ( ! $doctrineMetadata = $this->tryLoadingDoctrineMetadata($class->name)) { |
|
| 87 | 87 | return $classMetadata; |
| 88 | 88 | } |
| 89 | 89 | |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | |
| 132 | 132 | protected function tryLoadingDoctrineMetadata(string $className): ?DoctrineClassMetadata |
| 133 | 133 | { |
| 134 | - if (!$manager = $this->registry->getManagerForClass($className)) { |
|
| 134 | + if ( ! $manager = $this->registry->getManagerForClass($className)) { |
|
| 135 | 135 | return null; |
| 136 | 136 | } |
| 137 | 137 | |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | |
| 145 | 145 | protected function normalizeFieldType(string $type): ?string |
| 146 | 146 | { |
| 147 | - if (!isset($this->fieldMapping[$type])) { |
|
| 147 | + if ( ! isset($this->fieldMapping[$type])) { |
|
| 148 | 148 | return null; |
| 149 | 149 | } |
| 150 | 150 | |
@@ -16,8 +16,8 @@ discard block |
||
| 16 | 16 | { |
| 17 | 17 | protected function setDiscriminator(DoctrineClassMetadata $doctrineMetadata, ClassMetadata $classMetadata): void |
| 18 | 18 | { |
| 19 | - if (empty($classMetadata->discriminatorMap) && !$classMetadata->discriminatorDisabled |
|
| 20 | - && !empty($doctrineMetadata->discriminatorMap) && $doctrineMetadata->isRootEntity() |
|
| 19 | + if (empty($classMetadata->discriminatorMap) && ! $classMetadata->discriminatorDisabled |
|
| 20 | + && ! empty($doctrineMetadata->discriminatorMap) && $doctrineMetadata->isRootEntity() |
|
| 21 | 21 | ) { |
| 22 | 22 | $classMetadata->setDiscriminator( |
| 23 | 23 | $doctrineMetadata->discriminatorColumn['name'], |
@@ -43,11 +43,11 @@ discard block |
||
| 43 | 43 | // For inheritance schemes, we cannot add any type as we would only add the super-type of the hierarchy. |
| 44 | 44 | // On serialization, this would lead to only the supertype being serialized, and properties of subtypes |
| 45 | 45 | // being ignored. |
| 46 | - if ($targetMetadata instanceof DoctrineClassMetadata && !$targetMetadata->isInheritanceTypeNone()) { |
|
| 46 | + if ($targetMetadata instanceof DoctrineClassMetadata && ! $targetMetadata->isInheritanceTypeNone()) { |
|
| 47 | 47 | return; |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - if (!$doctrineMetadata->isSingleValuedAssociation($propertyName)) { |
|
| 50 | + if ( ! $doctrineMetadata->isSingleValuedAssociation($propertyName)) { |
|
| 51 | 51 | $targetEntity = sprintf('ArrayCollection<%s>', $targetEntity); |
| 52 | 52 | } |
| 53 | 53 | |
@@ -54,13 +54,13 @@ discard block |
||
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | $metadata = new ClassMetadata($name = $class->name); |
| 57 | - if (!$elems = $elem->xpath("./class[@name = '" . $name . "']")) { |
|
| 57 | + if ( ! $elems = $elem->xpath("./class[@name = '".$name."']")) { |
|
| 58 | 58 | throw new InvalidMetadataException(sprintf('Could not find class %s inside XML element.', $name)); |
| 59 | 59 | } |
| 60 | 60 | $elem = reset($elems); |
| 61 | 61 | |
| 62 | 62 | $metadata->fileResources[] = $path; |
| 63 | - $fileResource = $class->getFilename(); |
|
| 63 | + $fileResource = $class->getFilename(); |
|
| 64 | 64 | if (false !== $fileResource) { |
| 65 | 65 | $metadata->fileResources[] = $fileResource; |
| 66 | 66 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | $discriminatorFieldName = (string) $elem->attributes()->{'discriminator-field-name'}; |
| 93 | 93 | $discriminatorMap = []; |
| 94 | 94 | foreach ($elem->xpath('./discriminator-class') as $entry) { |
| 95 | - if (!isset($entry->attributes()->value)) { |
|
| 95 | + if ( ! isset($entry->attributes()->value)) { |
|
| 96 | 96 | throw new InvalidMetadataException('Each discriminator-class element must have a "value" attribute.'); |
| 97 | 97 | } |
| 98 | 98 | |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | |
| 102 | 102 | if ('true' === (string) $elem->attributes()->{'discriminator-disabled'}) { |
| 103 | 103 | $metadata->discriminatorDisabled = true; |
| 104 | - } elseif (!empty($discriminatorFieldName) || !empty($discriminatorMap)) { |
|
| 104 | + } elseif ( ! empty($discriminatorFieldName) || ! empty($discriminatorMap)) { |
|
| 105 | 105 | $discriminatorGroups = []; |
| 106 | 106 | foreach ($elem->xpath('./discriminator-groups/group') as $entry) { |
| 107 | 107 | $discriminatorGroups[] = (string) $entry; |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | foreach ($elem->xpath('./xml-namespace') as $xmlNamespace) { |
| 113 | - if (!isset($xmlNamespace->attributes()->uri)) { |
|
| 113 | + if ( ! isset($xmlNamespace->attributes()->uri)) { |
|
| 114 | 114 | throw new InvalidMetadataException('The prefix attribute must be set for all xml-namespace elements.'); |
| 115 | 115 | } |
| 116 | 116 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | $this->parseExpression((string) $method->attributes()->expression) |
| 144 | 144 | ); |
| 145 | 145 | } else { |
| 146 | - if (!isset($method->attributes()->method)) { |
|
| 146 | + if ( ! isset($method->attributes()->method)) { |
|
| 147 | 147 | throw new InvalidMetadataException('The method attribute must be set for all virtual-property elements.'); |
| 148 | 148 | } |
| 149 | 149 | $virtualPropertyMetadata = new VirtualPropertyMetadata($name, (string) $method->attributes()->method); |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | $propertiesNodes[] = $method; |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - if (!$excludeAll) { |
|
| 156 | + if ( ! $excludeAll) { |
|
| 157 | 157 | foreach ($class->getProperties() as $property) { |
| 158 | 158 | if ($property->class !== $name || (isset($property->info) && $property->info['class'] !== $name)) { |
| 159 | 159 | continue; |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | $pName = $property->getName(); |
| 162 | 162 | $propertiesMetadata[] = new PropertyMetadata($name, $pName); |
| 163 | 163 | |
| 164 | - $pElems = $elem->xpath("./property[@name = '" . $pName . "']"); |
|
| 164 | + $pElems = $elem->xpath("./property[@name = '".$pName."']"); |
|
| 165 | 165 | $propertiesNodes[] = $pElems ? reset($pElems) : null; |
| 166 | 166 | } |
| 167 | 167 | |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | || isset($propertiesNodes[$propertyKey]); |
| 173 | 173 | |
| 174 | 174 | $pElem = $propertiesNodes[$propertyKey]; |
| 175 | - if (!empty($pElem)) { |
|
| 175 | + if ( ! empty($pElem)) { |
|
| 176 | 176 | if (null !== $exclude = $pElem->attributes()->exclude) { |
| 177 | 177 | $isExclude = 'true' === strtolower((string) $exclude); |
| 178 | 178 | } |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | if (null !== $excludeIf = $pElem->attributes()->{'expose-if'}) { |
| 197 | - $pMetadata->excludeIf = $this->parseExpression('!(' . (string) $excludeIf . ')'); |
|
| 197 | + $pMetadata->excludeIf = $this->parseExpression('!('.(string) $excludeIf.')'); |
|
| 198 | 198 | $isExpose = true; |
| 199 | 199 | } |
| 200 | 200 | |
@@ -322,15 +322,15 @@ discard block |
||
| 322 | 322 | $metadata->isMap = $metadata->isMap || PropertyMetadata::isCollectionMap($pMetadata->type); |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | - if (!$pMetadata->serializedName) { |
|
| 325 | + if ( ! $pMetadata->serializedName) { |
|
| 326 | 326 | $pMetadata->serializedName = $this->namingStrategy->translateName($pMetadata); |
| 327 | 327 | } |
| 328 | 328 | |
| 329 | - if (!empty($pElem) && null !== $name = $pElem->attributes()->name) { |
|
| 329 | + if ( ! empty($pElem) && null !== $name = $pElem->attributes()->name) { |
|
| 330 | 330 | $pMetadata->name = (string) $name; |
| 331 | 331 | } |
| 332 | 332 | |
| 333 | - if ((ExclusionPolicy::NONE === (string) $exclusionPolicy && !$isExclude) |
|
| 333 | + if ((ExclusionPolicy::NONE === (string) $exclusionPolicy && ! $isExclude) |
|
| 334 | 334 | || (ExclusionPolicy::ALL === (string) $exclusionPolicy && $isExpose) |
| 335 | 335 | ) { |
| 336 | 336 | $metadata->addPropertyMetadata($pMetadata); |
@@ -339,10 +339,10 @@ discard block |
||
| 339 | 339 | } |
| 340 | 340 | |
| 341 | 341 | foreach ($elem->xpath('./callback-method') as $method) { |
| 342 | - if (!isset($method->attributes()->type)) { |
|
| 342 | + if ( ! isset($method->attributes()->type)) { |
|
| 343 | 343 | throw new InvalidMetadataException('The type attribute must be set for all callback-method elements.'); |
| 344 | 344 | } |
| 345 | - if (!isset($method->attributes()->name)) { |
|
| 345 | + if ( ! isset($method->attributes()->name)) { |
|
| 346 | 346 | throw new InvalidMetadataException('The name attribute must be set for all callback-method elements.'); |
| 347 | 347 | } |
| 348 | 348 | |
@@ -360,10 +360,10 @@ discard block |
||
| 360 | 360 | break; |
| 361 | 361 | |
| 362 | 362 | case 'handler': |
| 363 | - if (!isset($method->attributes()->format)) { |
|
| 363 | + if ( ! isset($method->attributes()->format)) { |
|
| 364 | 364 | throw new InvalidMetadataException('The format attribute must be set for "handler" callback methods.'); |
| 365 | 365 | } |
| 366 | - if (!isset($method->attributes()->direction)) { |
|
| 366 | + if ( ! isset($method->attributes()->direction)) { |
|
| 367 | 367 | throw new InvalidMetadataException('The direction attribute must be set for "handler" callback methods.'); |
| 368 | 368 | } |
| 369 | 369 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | && ($typeOfFiled = $doctrineMetadata->getTypeOfField($propertyName)) |
| 28 | 28 | && ($fieldType = $this->normalizeFieldType($typeOfFiled))) { |
| 29 | 29 | $field = $doctrineMetadata->getFieldMapping($propertyName); |
| 30 | - if (!empty($field['multivalue'])) { |
|
| 30 | + if ( ! empty($field['multivalue'])) { |
|
| 31 | 31 | $fieldType = 'array'; |
| 32 | 32 | } |
| 33 | 33 | |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | return; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - if (!$doctrineMetadata->isSingleValuedAssociation($propertyName)) { |
|
| 46 | + if ( ! $doctrineMetadata->isSingleValuedAssociation($propertyName)) { |
|
| 47 | 47 | $targetEntity = sprintf('ArrayCollection<%s>', $targetEntity); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | |
| 200 | 200 | private function getAccessorStrategy(): AccessorStrategyInterface |
| 201 | 201 | { |
| 202 | - if (!$this->accessorStrategy) { |
|
| 202 | + if ( ! $this->accessorStrategy) { |
|
| 203 | 203 | $this->accessorStrategy = new DefaultAccessorStrategy($this->expressionEvaluator); |
| 204 | 204 | } |
| 205 | 205 | return $this->accessorStrategy; |
@@ -235,10 +235,10 @@ discard block |
||
| 235 | 235 | |
| 236 | 236 | public function setCacheDir(string $dir): self |
| 237 | 237 | { |
| 238 | - if (!is_dir($dir)) { |
|
| 238 | + if ( ! is_dir($dir)) { |
|
| 239 | 239 | $this->createDir($dir); |
| 240 | 240 | } |
| 241 | - if (!is_writable($dir)) { |
|
| 241 | + if ( ! is_writable($dir)) { |
|
| 242 | 242 | throw new InvalidArgumentException(sprintf('The cache directory "%s" is not writable.', $dir)); |
| 243 | 243 | } |
| 244 | 244 | |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | public function setMetadataDirs(array $namespacePrefixToDirMap): self |
| 361 | 361 | { |
| 362 | 362 | foreach ($namespacePrefixToDirMap as $dir) { |
| 363 | - if (!is_dir($dir)) { |
|
| 363 | + if ( ! is_dir($dir)) { |
|
| 364 | 364 | throw new InvalidArgumentException(sprintf('The directory "%s" does not exist.', $dir)); |
| 365 | 365 | } |
| 366 | 366 | } |
@@ -398,7 +398,7 @@ discard block |
||
| 398 | 398 | */ |
| 399 | 399 | public function addMetadataDir(string $dir, string $namespacePrefix = ''): self |
| 400 | 400 | { |
| 401 | - if (!is_dir($dir)) { |
|
| 401 | + if ( ! is_dir($dir)) { |
|
| 402 | 402 | throw new InvalidArgumentException(sprintf('The directory "%s" does not exist.', $dir)); |
| 403 | 403 | } |
| 404 | 404 | |
@@ -437,11 +437,11 @@ discard block |
||
| 437 | 437 | */ |
| 438 | 438 | public function replaceMetadataDir(string $dir, string $namespacePrefix = ''): self |
| 439 | 439 | { |
| 440 | - if (!is_dir($dir)) { |
|
| 440 | + if ( ! is_dir($dir)) { |
|
| 441 | 441 | throw new InvalidArgumentException(sprintf('The directory "%s" does not exist.', $dir)); |
| 442 | 442 | } |
| 443 | 443 | |
| 444 | - if (!isset($this->metadataDirs[$namespacePrefix])) { |
|
| 444 | + if ( ! isset($this->metadataDirs[$namespacePrefix])) { |
|
| 445 | 445 | throw new InvalidArgumentException(sprintf('There is no directory configured for namespace prefix "%s". Please use addMetadataDir() for adding new directories.', $namespacePrefix)); |
| 446 | 446 | } |
| 447 | 447 | |
@@ -506,8 +506,8 @@ discard block |
||
| 506 | 506 | $annotationReader = new AnnotationReader(); |
| 507 | 507 | |
| 508 | 508 | if (null !== $this->cacheDir) { |
| 509 | - $this->createDir($this->cacheDir . '/annotations'); |
|
| 510 | - $annotationsCache = new FilesystemCache($this->cacheDir . '/annotations'); |
|
| 509 | + $this->createDir($this->cacheDir.'/annotations'); |
|
| 510 | + $annotationsCache = new FilesystemCache($this->cacheDir.'/annotations'); |
|
| 511 | 511 | $annotationReader = new CachedReader($annotationReader, $annotationsCache, $this->debug); |
| 512 | 512 | } |
| 513 | 513 | } |
@@ -529,19 +529,19 @@ discard block |
||
| 529 | 529 | if (null !== $this->metadataCache) { |
| 530 | 530 | $metadataFactory->setCache($this->metadataCache); |
| 531 | 531 | } elseif (null !== $this->cacheDir) { |
| 532 | - $this->createDir($this->cacheDir . '/metadata'); |
|
| 533 | - $metadataFactory->setCache(new FileCache($this->cacheDir . '/metadata')); |
|
| 532 | + $this->createDir($this->cacheDir.'/metadata'); |
|
| 533 | + $metadataFactory->setCache(new FileCache($this->cacheDir.'/metadata')); |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | - if (!$this->handlersConfigured) { |
|
| 536 | + if ( ! $this->handlersConfigured) { |
|
| 537 | 537 | $this->addDefaultHandlers(); |
| 538 | 538 | } |
| 539 | 539 | |
| 540 | - if (!$this->listenersConfigured) { |
|
| 540 | + if ( ! $this->listenersConfigured) { |
|
| 541 | 541 | $this->addDefaultListeners(); |
| 542 | 542 | } |
| 543 | 543 | |
| 544 | - if (!$this->visitorsAdded) { |
|
| 544 | + if ( ! $this->visitorsAdded) { |
|
| 545 | 545 | $this->addDefaultSerializationVisitors(); |
| 546 | 546 | $this->addDefaultDeserializationVisitors(); |
| 547 | 547 | } |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | foreach ($data as $key => $value) { |
| 40 | - if (!property_exists(self::class, $key)) { |
|
| 40 | + if ( ! property_exists(self::class, $key)) { |
|
| 41 | 41 | throw new InvalidArgumentException(sprintf('Unknown property "%s" on annotation "%s".', $key, self::class)); |
| 42 | 42 | } |
| 43 | 43 | $this->{$key} = $value; |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $value = $values['policy']; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - if (!\is_string($value)) { |
|
| 35 | + if ( ! \is_string($value)) { |
|
| 36 | 36 | throw new RuntimeException('Exclusion policy value must be of string type.'); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -60,14 +60,14 @@ discard block |
||
| 60 | 60 | if ($this->nestedGroups) { |
| 61 | 61 | $groups = $this->getGroupsFor($navigatorContext); |
| 62 | 62 | |
| 63 | - if (!$property->groups) { |
|
| 64 | - return !in_array(self::DEFAULT_GROUP, $groups); |
|
| 63 | + if ( ! $property->groups) { |
|
| 64 | + return ! in_array(self::DEFAULT_GROUP, $groups); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | return $this->shouldSkipUsingGroups($property, $groups); |
| 68 | 68 | } else { |
| 69 | - if (!$property->groups) { |
|
| 70 | - return !isset($this->groups[self::DEFAULT_GROUP]); |
|
| 69 | + if ( ! $property->groups) { |
|
| 70 | + return ! isset($this->groups[self::DEFAULT_GROUP]); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | foreach ($property->groups as $group) { |
@@ -92,21 +92,21 @@ discard block |
||
| 92 | 92 | |
| 93 | 93 | public function getGroupsFor(Context $navigatorContext): array |
| 94 | 94 | { |
| 95 | - if (!$this->nestedGroups) { |
|
| 95 | + if ( ! $this->nestedGroups) { |
|
| 96 | 96 | return array_keys($this->groups); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | $paths = $navigatorContext->getCurrentPath(); |
| 100 | 100 | $groups = $this->groups; |
| 101 | 101 | foreach ($paths as $index => $path) { |
| 102 | - if (!array_key_exists($path, $groups)) { |
|
| 102 | + if ( ! array_key_exists($path, $groups)) { |
|
| 103 | 103 | if ($index > 0) { |
| 104 | 104 | $groups = [self::DEFAULT_GROUP]; |
| 105 | 105 | } |
| 106 | 106 | break; |
| 107 | 107 | } |
| 108 | 108 | $groups = $groups[$path]; |
| 109 | - if (!array_filter($groups, 'is_string')) { |
|
| 109 | + if ( ! array_filter($groups, 'is_string')) { |
|
| 110 | 110 | $groups += [self::DEFAULT_GROUP]; |
| 111 | 111 | } |
| 112 | 112 | } |