@@ -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 |
@@ -54,14 +54,14 @@ discard block |
||
54 | 54 | if ($this->nestedGroups) { |
55 | 55 | $groups = $this->getGroupsFor($navigatorContext); |
56 | 56 | |
57 | - if (!$property->groups) { |
|
58 | - return !in_array(self::DEFAULT_GROUP, $groups); |
|
57 | + if ( ! $property->groups) { |
|
58 | + return ! in_array(self::DEFAULT_GROUP, $groups); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | return $this->shouldSkipUsingGroups($property, $groups); |
62 | 62 | } else { |
63 | - if (!$property->groups) { |
|
64 | - return !isset($this->groups[self::DEFAULT_GROUP]); |
|
63 | + if ( ! $property->groups) { |
|
64 | + return ! isset($this->groups[self::DEFAULT_GROUP]); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | foreach ($property->groups as $group) { |
@@ -87,14 +87,14 @@ discard block |
||
87 | 87 | |
88 | 88 | public function getGroupsFor(Context $navigatorContext): array |
89 | 89 | { |
90 | - if (!$this->nestedGroups) { |
|
90 | + if ( ! $this->nestedGroups) { |
|
91 | 91 | return array_keys($this->groups); |
92 | 92 | } |
93 | 93 | |
94 | 94 | $paths = $navigatorContext->getCurrentPath(); |
95 | 95 | $groups = $this->groups; |
96 | 96 | foreach ($paths as $index => $path) { |
97 | - if (!array_key_exists($path, $groups)) { |
|
97 | + if ( ! array_key_exists($path, $groups)) { |
|
98 | 98 | if ($index > 0) { |
99 | 99 | $groups = [self::DEFAULT_GROUP]; |
100 | 100 | } else { |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | } |
106 | 106 | |
107 | 107 | $groups = $groups[$path]; |
108 | - if (!array_filter($groups, 'is_string')) { |
|
108 | + if ( ! array_filter($groups, 'is_string')) { |
|
109 | 109 | $groups += [self::DEFAULT_GROUP]; |
110 | 110 | } |
111 | 111 | } |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | |
140 | 140 | switch ($type['name']) { |
141 | 141 | case 'NULL': |
142 | - if (!$this->shouldSerializeNull && !$this->isRootNullAllowed()) { |
|
142 | + if ( ! $this->shouldSerializeNull && ! $this->isRootNullAllowed()) { |
|
143 | 143 | throw new NotAcceptableException(); |
144 | 144 | } |
145 | 145 | |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | case 'resource': |
170 | 170 | $msg = 'Resources are not supported in serialized data.'; |
171 | 171 | if (null !== $path = $this->context->getPath()) { |
172 | - $msg .= ' Path: ' . $path; |
|
172 | + $msg .= ' Path: '.$path; |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | throw new RuntimeException($msg); |
@@ -235,8 +235,8 @@ discard block |
||
235 | 235 | throw new ExcludedClassException(); |
236 | 236 | } |
237 | 237 | |
238 | - if (!is_object($data)) { |
|
239 | - throw new InvalidArgumentException('Value at ' . $this->context->getPath() . ' is expected to be an object of class ' . $type['name'] . ' but is of type ' . gettype($data)); |
|
238 | + if ( ! is_object($data)) { |
|
239 | + throw new InvalidArgumentException('Value at '.$this->context->getPath().' is expected to be an object of class '.$type['name'].' but is of type '.gettype($data)); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | $this->context->pushClassMetadata($metadata); |
@@ -10,9 +10,9 @@ discard block |
||
10 | 10 | { |
11 | 11 | private function loadAnnotationParameters(array $vars): void |
12 | 12 | { |
13 | - if (!array_key_exists('values', $vars)) { |
|
13 | + if ( ! array_key_exists('values', $vars)) { |
|
14 | 14 | $values = []; |
15 | - } elseif (!is_array($vars['values'])) { |
|
15 | + } elseif ( ! is_array($vars['values'])) { |
|
16 | 16 | $values = ['value' => $vars['values']]; |
17 | 17 | } else { |
18 | 18 | $values = $vars['values']; |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | } |
31 | 31 | |
32 | 32 | foreach ($vars as $key => $value) { |
33 | - if (!property_exists(static::class, $key)) { |
|
33 | + if ( ! property_exists(static::class, $key)) { |
|
34 | 34 | throw new InvalidArgumentException(sprintf('Unknown property "%s" on annotation "%s".', $key, static::class)); |
35 | 35 | } |
36 | 36 |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | public function getFilters() |
36 | 36 | { |
37 | 37 | return [ |
38 | - new TwigFilter($this->serializationFunctionsPrefix . 'serialize', [$this, 'serialize']), |
|
38 | + new TwigFilter($this->serializationFunctionsPrefix.'serialize', [$this, 'serialize']), |
|
39 | 39 | ]; |
40 | 40 | } |
41 | 41 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | public function getFunctions() |
48 | 48 | { |
49 | 49 | return [ |
50 | - new TwigFunction($this->serializationFunctionsPrefix . 'serialization_context', '\JMS\Serializer\SerializationContext::create'), |
|
50 | + new TwigFunction($this->serializationFunctionsPrefix.'serialization_context', '\JMS\Serializer\SerializationContext::create'), |
|
51 | 51 | ]; |
52 | 52 | } |
53 | 53 |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | public function getFilters() |
21 | 21 | { |
22 | 22 | return [ |
23 | - new TwigFilter($this->serializationFunctionsPrefix . 'serialize', [SerializerRuntimeHelper::class, 'serialize']), |
|
23 | + new TwigFilter($this->serializationFunctionsPrefix.'serialize', [SerializerRuntimeHelper::class, 'serialize']), |
|
24 | 24 | ]; |
25 | 25 | } |
26 | 26 | |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | public function getFunctions() |
33 | 33 | { |
34 | 34 | return [ |
35 | - new TwigFunction($this->serializationFunctionsPrefix . 'serialization_context', '\JMS\Serializer\SerializationContext::create'), |
|
35 | + new TwigFunction($this->serializationFunctionsPrefix.'serialization_context', '\JMS\Serializer\SerializationContext::create'), |
|
36 | 36 | ]; |
37 | 37 | } |
38 | 38 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | All the other cases should work as expected. |
26 | 26 | The alternative here is to use the explicit syntax Groups(groups=['value' => '...']) |
27 | 27 | */ |
28 | - if (count($values) > 0 && ((!isset($values['value']) && !isset($values['groups'])) || count($values) > 1) && 0 === count($groups)) { |
|
28 | + if (count($values) > 0 && (( ! isset($values['value']) && ! isset($values['groups'])) || count($values) > 1) && 0 === count($groups)) { |
|
29 | 29 | $vars['groups'] = $values; |
30 | 30 | $vars['values'] = []; |
31 | 31 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | } |
120 | 120 | |
121 | 121 | $propertyMetadata = $context->getMetadataStack()->top(); |
122 | - if (!$propertyMetadata instanceof PropertyMetadata) { |
|
122 | + if ( ! $propertyMetadata instanceof PropertyMetadata) { |
|
123 | 123 | return $elements; |
124 | 124 | } |
125 | 125 | |
@@ -137,18 +137,18 @@ discard block |
||
137 | 137 | && $classMetadata->isCollectionValuedAssociation($propertyMetadata->name) |
138 | 138 | ) { |
139 | 139 | $existingCollection = $classMetadata->getFieldValue($currentObject, $propertyMetadata->name); |
140 | - if (!$existingCollection instanceof OrmPersistentCollection) { |
|
140 | + if ( ! $existingCollection instanceof OrmPersistentCollection) { |
|
141 | 141 | return $elements; |
142 | 142 | } |
143 | 143 | |
144 | 144 | foreach ($elements as $element) { |
145 | - if (!$existingCollection->contains($element)) { |
|
145 | + if ( ! $existingCollection->contains($element)) { |
|
146 | 146 | $existingCollection->add($element); |
147 | 147 | } |
148 | 148 | } |
149 | 149 | |
150 | 150 | foreach ($existingCollection as $collectionElement) { |
151 | - if (!$elements->contains($collectionElement)) { |
|
151 | + if ( ! $elements->contains($collectionElement)) { |
|
152 | 152 | $existingCollection->removeElement($collectionElement); |
153 | 153 | } |
154 | 154 | } |