@@ -17,8 +17,8 @@ discard block |
||
| 17 | 17 | protected function setDiscriminator(DoctrineClassMetadata $doctrineMetadata, ClassMetadata $classMetadata): void |
| 18 | 18 | { |
| 19 | 19 | if ( |
| 20 | - empty($classMetadata->discriminatorMap) && !$classMetadata->discriminatorDisabled |
|
| 21 | - && !empty($doctrineMetadata->discriminatorMap) && $doctrineMetadata->isRootEntity() |
|
| 20 | + empty($classMetadata->discriminatorMap) && ! $classMetadata->discriminatorDisabled |
|
| 21 | + && ! empty($doctrineMetadata->discriminatorMap) && $doctrineMetadata->isRootEntity() |
|
| 22 | 22 | ) { |
| 23 | 23 | $classMetadata->setDiscriminator( |
| 24 | 24 | $doctrineMetadata->discriminatorColumn['name'], |
@@ -46,11 +46,11 @@ discard block |
||
| 46 | 46 | // For inheritance schemes, we cannot add any type as we would only add the super-type of the hierarchy. |
| 47 | 47 | // On serialization, this would lead to only the supertype being serialized, and properties of subtypes |
| 48 | 48 | // being ignored. |
| 49 | - if ($targetMetadata instanceof DoctrineClassMetadata && !$targetMetadata->isInheritanceTypeNone()) { |
|
| 49 | + if ($targetMetadata instanceof DoctrineClassMetadata && ! $targetMetadata->isInheritanceTypeNone()) { |
|
| 50 | 50 | return; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | - if (!$doctrineMetadata->isSingleValuedAssociation($propertyName)) { |
|
| 53 | + if ( ! $doctrineMetadata->isSingleValuedAssociation($propertyName)) { |
|
| 54 | 54 | $targetEntity = sprintf('ArrayCollection<%s>', $targetEntity); |
| 55 | 55 | } |
| 56 | 56 | |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | && ($fieldType = $this->normalizeFieldType($typeOfFiled)) |
| 30 | 30 | ) { |
| 31 | 31 | $field = $doctrineMetadata->getFieldMapping($propertyName); |
| 32 | - if (!empty($field['multivalue'])) { |
|
| 32 | + if ( ! empty($field['multivalue'])) { |
|
| 33 | 33 | $fieldType = 'array'; |
| 34 | 34 | } |
| 35 | 35 | |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | return; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - if (!$doctrineMetadata->isSingleValuedAssociation($propertyName)) { |
|
| 48 | + if ( ! $doctrineMetadata->isSingleValuedAssociation($propertyName)) { |
|
| 49 | 49 | $targetEntity = sprintf('ArrayCollection<%s>', $targetEntity); |
| 50 | 50 | } |
| 51 | 51 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | \assert($classMetadata instanceof ClassMetadata); |
| 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 | |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | |
| 130 | 130 | protected function tryLoadingDoctrineMetadata(string $className): ?DoctrineClassMetadata |
| 131 | 131 | { |
| 132 | - if (!$manager = $this->registry->getManagerForClass($className)) { |
|
| 132 | + if ( ! $manager = $this->registry->getManagerForClass($className)) { |
|
| 133 | 133 | return null; |
| 134 | 134 | } |
| 135 | 135 | |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | |
| 143 | 143 | protected function normalizeFieldType(string $type): ?string |
| 144 | 144 | { |
| 145 | - if (!isset($this->fieldMapping[$type])) { |
|
| 145 | + if ( ! isset($this->fieldMapping[$type])) { |
|
| 146 | 146 | return null; |
| 147 | 147 | } |
| 148 | 148 | |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | public function startVisiting($object): void |
| 66 | 66 | { |
| 67 | - if (!\is_object($object)) { |
|
| 67 | + if ( ! \is_object($object)) { |
|
| 68 | 68 | return; |
| 69 | 69 | } |
| 70 | 70 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | public function stopVisiting($object): void |
| 79 | 79 | { |
| 80 | - if (!\is_object($object)) { |
|
| 80 | + if ( ! \is_object($object)) { |
|
| 81 | 81 | return; |
| 82 | 82 | } |
| 83 | 83 | |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | */ |
| 95 | 95 | public function isVisiting($object): bool |
| 96 | 96 | { |
| 97 | - if (!\is_object($object)) { |
|
| 97 | + if ( ! \is_object($object)) { |
|
| 98 | 98 | return false; |
| 99 | 99 | } |
| 100 | 100 | |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | $path[] = \get_class($obj); |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - if (!$path) { |
|
| 111 | + if ( ! $path) { |
|
| 112 | 112 | return null; |
| 113 | 113 | } |
| 114 | 114 | |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | |
| 128 | 128 | public function getObject(): ?object |
| 129 | 129 | { |
| 130 | - return !$this->visitingStack->isEmpty() ? $this->visitingStack->top() : null; |
|
| 130 | + return ! $this->visitingStack->isEmpty() ? $this->visitingStack->top() : null; |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | public function getVisitingStack(): \SplStack |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | |
| 32 | 32 | public function translateName(PropertyMetadata $property): string |
| 33 | 33 | { |
| 34 | - $name = preg_replace('/[A-Z]+/', $this->separator . '\\0', $property->name); |
|
| 34 | + $name = preg_replace('/[A-Z]+/', $this->separator.'\\0', $property->name); |
|
| 35 | 35 | |
| 36 | 36 | if ($this->lowerCase) { |
| 37 | 37 | return strtolower($name); |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | public function createRoot(?ClassMetadata $metadata = null, ?string $rootName = null, ?string $rootNamespace = null, ?string $rootPrefix = null): \DOMElement |
| 106 | 106 | { |
| 107 | - if (null !== $metadata && !empty($metadata->xmlRootName)) { |
|
| 107 | + if (null !== $metadata && ! empty($metadata->xmlRootName)) { |
|
| 108 | 108 | $rootPrefix = $metadata->xmlRootPrefix; |
| 109 | 109 | $rootName = $metadata->xmlRootName; |
| 110 | 110 | $rootNamespace = $metadata->xmlRootNamespace ?: $this->getClassDefaultNamespace($metadata); |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | |
| 117 | 117 | $document = $this->getDocument(); |
| 118 | 118 | if ($rootNamespace) { |
| 119 | - $rootNode = $document->createElementNS($rootNamespace, (null !== $rootPrefix ? $rootPrefix . ':' : '') . $rootName); |
|
| 119 | + $rootNode = $document->createElementNS($rootNamespace, (null !== $rootPrefix ? $rootPrefix.':' : '').$rootName); |
|
| 120 | 120 | } else { |
| 121 | 121 | $rootNode = $document->createElement($rootName); |
| 122 | 122 | } |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | $node = $this->navigator->accept($v, $metadata->type); |
| 246 | 246 | $this->revertCurrentMetadata(); |
| 247 | 247 | |
| 248 | - if (!$node instanceof \DOMCharacterData) { |
|
| 248 | + if ( ! $node instanceof \DOMCharacterData) { |
|
| 249 | 249 | throw new RuntimeException(sprintf('Unsupported value for XML attribute for %s. Expected character data, but got %s.', $metadata->name, json_encode($v))); |
| 250 | 250 | } |
| 251 | 251 | |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | |
| 257 | 257 | if ( |
| 258 | 258 | ($metadata->xmlValue && $this->currentNode->childNodes->length > 0) |
| 259 | - || (!$metadata->xmlValue && $this->hasValue) |
|
| 259 | + || ( ! $metadata->xmlValue && $this->hasValue) |
|
| 260 | 260 | ) { |
| 261 | 261 | throw new RuntimeException(sprintf('If you make use of @XmlValue, all other properties in the class must have the @XmlAttribute annotation. Invalid usage detected in class %s.', $metadata->class)); |
| 262 | 262 | } |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | $node = $this->navigator->accept($v, $metadata->type); |
| 269 | 269 | $this->revertCurrentMetadata(); |
| 270 | 270 | |
| 271 | - if (!$node instanceof \DOMCharacterData) { |
|
| 271 | + if ( ! $node instanceof \DOMCharacterData) { |
|
| 272 | 272 | throw new RuntimeException(sprintf('Unsupported value for property %s::$%s. Expected character data, but got %s.', $metadata->reflection->class, $metadata->reflection->name, \is_object($node) ? \get_class($node) : \gettype($node))); |
| 273 | 273 | } |
| 274 | 274 | |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | if ($metadata->xmlAttributeMap) { |
| 281 | - if (!\is_array($v)) { |
|
| 281 | + if ( ! \is_array($v)) { |
|
| 282 | 282 | throw new RuntimeException(sprintf('Unsupported value type for XML attribute map. Expected array but got %s.', \gettype($v))); |
| 283 | 283 | } |
| 284 | 284 | |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | $node = $this->navigator->accept($value, null); |
| 288 | 288 | $this->revertCurrentMetadata(); |
| 289 | 289 | |
| 290 | - if (!$node instanceof \DOMCharacterData) { |
|
| 290 | + if ( ! $node instanceof \DOMCharacterData) { |
|
| 291 | 291 | throw new RuntimeException(sprintf('Unsupported value for a XML attribute map value. Expected character data, but got %s.', json_encode($v))); |
| 292 | 292 | } |
| 293 | 293 | |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | return; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - if ($addEnclosingElement = !$this->isInLineCollection($metadata) && !$metadata->inline) { |
|
| 300 | + if ($addEnclosingElement = ! $this->isInLineCollection($metadata) && ! $metadata->inline) { |
|
| 301 | 301 | $namespace = null !== $metadata->xmlNamespace |
| 302 | 302 | ? $metadata->xmlNamespace |
| 303 | 303 | : $this->getClassDefaultNamespace($this->objectMetadataStack->top()); |
@@ -342,7 +342,7 @@ discard block |
||
| 342 | 342 | |
| 343 | 343 | private function isSkippableEmptyObject(?\DOMElement $node, PropertyMetadata $metadata): bool |
| 344 | 344 | { |
| 345 | - return null === $node && !$metadata->xmlCollection && $metadata->skipWhenEmpty; |
|
| 345 | + return null === $node && ! $metadata->xmlCollection && $metadata->skipWhenEmpty; |
|
| 346 | 346 | } |
| 347 | 347 | |
| 348 | 348 | private function isSkippableCollection(PropertyMetadata $metadata): bool |
@@ -352,7 +352,7 @@ discard block |
||
| 352 | 352 | |
| 353 | 353 | private function isElementEmpty(\DOMElement $element): bool |
| 354 | 354 | { |
| 355 | - return !$element->hasChildNodes() && !$element->hasAttributes(); |
|
| 355 | + return ! $element->hasChildNodes() && ! $element->hasAttributes(); |
|
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | public function endVisitingObject(ClassMetadata $metadata, object $data, array $type): void |
@@ -460,7 +460,7 @@ discard block |
||
| 460 | 460 | foreach ($metadata->xmlNamespaces as $prefix => $uri) { |
| 461 | 461 | $attribute = 'xmlns'; |
| 462 | 462 | if ('' !== $prefix) { |
| 463 | - $attribute .= ':' . $prefix; |
|
| 463 | + $attribute .= ':'.$prefix; |
|
| 464 | 464 | } elseif ($element->namespaceURI === $uri) { |
| 465 | 465 | continue; |
| 466 | 466 | } |
@@ -490,21 +490,21 @@ discard block |
||
| 490 | 490 | return $this->document->createElementNS($namespace, $tagName); |
| 491 | 491 | } |
| 492 | 492 | |
| 493 | - if (!($prefix = $this->currentNode->lookupPrefix($namespace)) && !($prefix = $this->document->lookupPrefix($namespace))) { |
|
| 494 | - $prefix = 'ns-' . substr(sha1($namespace), 0, 8); |
|
| 493 | + if ( ! ($prefix = $this->currentNode->lookupPrefix($namespace)) && ! ($prefix = $this->document->lookupPrefix($namespace))) { |
|
| 494 | + $prefix = 'ns-'.substr(sha1($namespace), 0, 8); |
|
| 495 | 495 | } |
| 496 | 496 | |
| 497 | - return $this->document->createElementNS($namespace, $prefix . ':' . $tagName); |
|
| 497 | + return $this->document->createElementNS($namespace, $prefix.':'.$tagName); |
|
| 498 | 498 | } |
| 499 | 499 | |
| 500 | 500 | private function setAttributeOnNode(\DOMElement $node, string $name, string $value, ?string $namespace = null): void |
| 501 | 501 | { |
| 502 | 502 | if (null !== $namespace) { |
| 503 | - if (!$prefix = $node->lookupPrefix($namespace)) { |
|
| 504 | - $prefix = 'ns-' . substr(sha1($namespace), 0, 8); |
|
| 503 | + if ( ! $prefix = $node->lookupPrefix($namespace)) { |
|
| 504 | + $prefix = 'ns-'.substr(sha1($namespace), 0, 8); |
|
| 505 | 505 | } |
| 506 | 506 | |
| 507 | - $node->setAttributeNS($namespace, $prefix . ':' . $name, $value); |
|
| 507 | + $node->setAttributeNS($namespace, $prefix.':'.$name, $value); |
|
| 508 | 508 | } else { |
| 509 | 509 | $node->setAttribute($name, $value); |
| 510 | 510 | } |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | $accessor = $this->readAccessors[$metadata->class] ?? null; |
| 87 | 87 | if (null === $accessor) { |
| 88 | - $accessor = \Closure::bind(static function ($o, $name) { |
|
| 88 | + $accessor = \Closure::bind(static function($o, $name) { |
|
| 89 | 89 | return $o->$name; |
| 90 | 90 | }, null, $metadata->class); |
| 91 | 91 | $this->readAccessors[$metadata->class] = $accessor; |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | |
| 125 | 125 | $accessor = $this->writeAccessors[$metadata->class] ?? null; |
| 126 | 126 | if (null === $accessor) { |
| 127 | - $accessor = \Closure::bind(static function ($o, $name, $value): void { |
|
| 127 | + $accessor = \Closure::bind(static function($o, $name, $value): void { |
|
| 128 | 128 | $o->$name = $value; |
| 129 | 129 | }, null, $metadata->class); |
| 130 | 130 | $this->writeAccessors[$metadata->class] = $accessor; |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | |
| 31 | 31 | public static function getDefaultMethodName(string $eventName): string |
| 32 | 32 | { |
| 33 | - return 'on' . str_replace(['_', '.'], '', $eventName); |
|
| 33 | + return 'on'.str_replace(['_', '.'], '', $eventName); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | public function addSubscriber(EventSubscriberInterface $subscriber): void |
| 57 | 57 | { |
| 58 | 58 | foreach ($subscriber->getSubscribedEvents() as $eventData) { |
| 59 | - if (!isset($eventData['event'])) { |
|
| 59 | + if ( ! isset($eventData['event'])) { |
|
| 60 | 60 | throw new InvalidArgumentException(sprintf('Each event must have a "event" key.')); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -71,33 +71,33 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | public function hasListeners(string $eventName, string $class, string $format): bool |
| 73 | 73 | { |
| 74 | - if (!isset($this->listeners[$eventName])) { |
|
| 74 | + if ( ! isset($this->listeners[$eventName])) { |
|
| 75 | 75 | return false; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - if (!isset($this->classListeners[$eventName][$class][$format])) { |
|
| 78 | + if ( ! isset($this->classListeners[$eventName][$class][$format])) { |
|
| 79 | 79 | $this->classListeners[$eventName][$class][$format] = $this->initializeListeners($eventName, $class, $format); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - return !!$this->classListeners[$eventName][$class][$format]; |
|
| 82 | + return ! ! $this->classListeners[$eventName][$class][$format]; |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | public function dispatch(string $eventName, string $class, string $format, Event $event): void |
| 86 | 86 | { |
| 87 | - if (!isset($this->listeners[$eventName])) { |
|
| 87 | + if ( ! isset($this->listeners[$eventName])) { |
|
| 88 | 88 | return; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | $object = $event instanceof ObjectEvent ? $event->getObject() : null; |
| 92 | 92 | $realClass = is_object($object) ? get_class($object) : ''; |
| 93 | - $objectClass = $realClass !== $class ? $realClass . $class : $class; |
|
| 93 | + $objectClass = $realClass !== $class ? $realClass.$class : $class; |
|
| 94 | 94 | |
| 95 | - if (!isset($this->classListeners[$eventName][$objectClass][$format])) { |
|
| 95 | + if ( ! isset($this->classListeners[$eventName][$objectClass][$format])) { |
|
| 96 | 96 | $this->classListeners[$eventName][$objectClass][$format] = $this->initializeListeners($eventName, $class, $format); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | foreach ($this->classListeners[$eventName][$objectClass][$format] as $listener) { |
| 100 | - if (!empty($listener[3]) && !($object instanceof $listener[3])) { |
|
| 100 | + if ( ! empty($listener[3]) && ! ($object instanceof $listener[3])) { |
|
| 101 | 101 | continue; |
| 102 | 102 | } |
| 103 | 103 | |
@@ -40,14 +40,14 @@ discard block |
||
| 40 | 40 | // If the set type name is not an actual class, but a faked type for which a custom handler exists, we do not |
| 41 | 41 | // modify it with this subscriber. Also, we forgo autoloading here as an instance of this type is already created, |
| 42 | 42 | // so it must be loaded if its a real class. |
| 43 | - $virtualType = !class_exists($type['name'], false); |
|
| 43 | + $virtualType = ! class_exists($type['name'], false); |
|
| 44 | 44 | |
| 45 | 45 | if ( |
| 46 | 46 | $object instanceof PersistentCollection |
| 47 | 47 | || $object instanceof MongoDBPersistentCollection |
| 48 | 48 | || $object instanceof PHPCRPersistentCollection |
| 49 | 49 | ) { |
| 50 | - if (!$virtualType) { |
|
| 50 | + if ( ! $virtualType) { |
|
| 51 | 51 | $event->setType('ArrayCollection'); |
| 52 | 52 | } |
| 53 | 53 | |
@@ -56,13 +56,13 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | if ( |
| 58 | 58 | ($this->skipVirtualTypeInit && $virtualType) || |
| 59 | - (!$object instanceof Proxy && !$object instanceof LazyLoadingInterface) |
|
| 59 | + ( ! $object instanceof Proxy && ! $object instanceof LazyLoadingInterface) |
|
| 60 | 60 | ) { |
| 61 | 61 | return; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | // do not initialize the proxy if is going to be excluded by-class by some exclusion strategy |
| 65 | - if (false === $this->initializeExcluded && !$virtualType) { |
|
| 65 | + if (false === $this->initializeExcluded && ! $virtualType) { |
|
| 66 | 66 | $context = $event->getContext(); |
| 67 | 67 | $exclusionStrategy = $context->getExclusionStrategy(); |
| 68 | 68 | $metadata = $context->getMetadataFactory()->getMetadataForClass(get_parent_class($object)); |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | $object->__load(); |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - if (!$virtualType) { |
|
| 80 | + if ( ! $virtualType) { |
|
| 81 | 81 | $event->setType(get_parent_class($object), $type['params']); |
| 82 | 82 | } |
| 83 | 83 | } |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | { |
| 87 | 87 | $type = $event->getType(); |
| 88 | 88 | // is a virtual type? then there is no need to change the event name |
| 89 | - if (!class_exists($type['name'], false)) { |
|
| 89 | + if ( ! class_exists($type['name'], false)) { |
|
| 90 | 90 | return; |
| 91 | 91 | } |
| 92 | 92 | |