@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | { |
38 | 38 | $this->lexer->moveNext(); |
39 | 39 | |
40 | - if (!$this->lexer->token) { |
|
40 | + if ( ! $this->lexer->token) { |
|
41 | 41 | throw new SyntaxError( |
42 | 42 | 'Syntax error, unexpected end of stream' |
43 | 43 | ); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | return $this->visitSimpleType(); |
62 | - } elseif (!$this->root && Lexer::T_ARRAY_START === $this->lexer->token->type) { |
|
62 | + } elseif ( ! $this->root && Lexer::T_ARRAY_START === $this->lexer->token->type) { |
|
63 | 63 | return $this->visitArrayType(); |
64 | 64 | } |
65 | 65 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | $this->match(Lexer::T_TYPE_START); |
88 | 88 | |
89 | 89 | $params = []; |
90 | - if (!$this->lexer->isNextToken(Lexer::T_TYPE_END)) { |
|
90 | + if ( ! $this->lexer->isNextToken(Lexer::T_TYPE_END)) { |
|
91 | 91 | while (true) { |
92 | 92 | $params[] = $this->visit(); |
93 | 93 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | */ |
116 | 116 | |
117 | 117 | $params = []; |
118 | - if (!$this->lexer->isNextToken(Lexer::T_ARRAY_END)) { |
|
118 | + if ( ! $this->lexer->isNextToken(Lexer::T_ARRAY_END)) { |
|
119 | 119 | while (true) { |
120 | 120 | $params[] = $this->visit(); |
121 | 121 | if ($this->lexer->isNextToken(Lexer::T_ARRAY_END)) { |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | |
134 | 134 | private function match(int $token): void |
135 | 135 | { |
136 | - if (!$this->lexer->lookahead) { |
|
136 | + if ( ! $this->lexer->lookahead) { |
|
137 | 137 | throw new SyntaxError( |
138 | 138 | sprintf('Syntax error, unexpected end of stream, expected %s', $this->getConstant($token)) |
139 | 139 | ); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | public function __construct($values = [], $name = null) |
23 | 23 | { |
24 | - if ((null !== $name) && !is_string($name) && !(is_object($name) && method_exists($name, '__toString'))) { |
|
24 | + if ((null !== $name) && ! is_string($name) && ! (is_object($name) && method_exists($name, '__toString'))) { |
|
25 | 25 | throw new \RuntimeException( |
26 | 26 | 'Type must be either string, null or object implements __toString() method.' |
27 | 27 | ); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | public function getAllClassNames(): array |
72 | 72 | { |
73 | - if (!$this->locator instanceof AdvancedFileLocatorInterface) { |
|
73 | + if ( ! $this->locator instanceof AdvancedFileLocatorInterface) { |
|
74 | 74 | throw new RuntimeException( |
75 | 75 | sprintf( |
76 | 76 | 'Locator "%s" must be an instance of "AdvancedFileLocatorInterface".', |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | { |
94 | 94 | $config = Yaml::parseFile($file, Yaml::PARSE_CONSTANT); |
95 | 95 | |
96 | - if (!isset($config[$name = $class->name])) { |
|
96 | + if ( ! isset($config[$name = $class->name])) { |
|
97 | 97 | throw new InvalidMetadataException( |
98 | 98 | sprintf('Expected metadata for class %s to be defined in %s.', $class->name, $file) |
99 | 99 | ); |
@@ -130,9 +130,9 @@ discard block |
||
130 | 130 | ); |
131 | 131 | unset($propertySettings['exp']); |
132 | 132 | } else { |
133 | - if (!$class->hasMethod($methodName)) { |
|
133 | + if ( ! $class->hasMethod($methodName)) { |
|
134 | 134 | throw new InvalidMetadataException( |
135 | - 'The method ' . $methodName . ' not found in class ' . $class->name |
|
135 | + 'The method '.$methodName.' not found in class '.$class->name |
|
136 | 136 | ); |
137 | 137 | } |
138 | 138 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | } |
145 | 145 | } |
146 | 146 | |
147 | - if (!$excludeAll) { |
|
147 | + if ( ! $excludeAll) { |
|
148 | 148 | foreach ($class->getProperties() as $property) { |
149 | 149 | if ($property->class !== $name || (isset($property->info) && $property->info['class'] !== $name)) { |
150 | 150 | continue; |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | |
153 | 153 | $pName = $property->getName(); |
154 | 154 | $propertiesMetadata[] = new PropertyMetadata($name, $pName); |
155 | - $propertiesData[] = !empty($config['properties']) && true === array_key_exists($pName, $config['properties']) |
|
155 | + $propertiesData[] = ! empty($config['properties']) && true === array_key_exists($pName, $config['properties']) |
|
156 | 156 | ? (array) $config['properties'][$pName] |
157 | 157 | : null; |
158 | 158 | } |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | || isset($propertiesData[$propertyKey]); |
165 | 165 | |
166 | 166 | $pConfig = $propertiesData[$propertyKey]; |
167 | - if (!empty($pConfig)) { |
|
167 | + if ( ! empty($pConfig)) { |
|
168 | 168 | if (isset($pConfig['exclude'])) { |
169 | 169 | $isExclude = (bool) $pConfig['exclude']; |
170 | 170 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | } |
195 | 195 | |
196 | 196 | if (isset($pConfig['expose_if'])) { |
197 | - $pMetadata->excludeIf = $this->parseExpression('!(' . $pConfig['expose_if'] . ')'); |
|
197 | + $pMetadata->excludeIf = $this->parseExpression('!('.$pConfig['expose_if'].')'); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | if (isset($pConfig['serialized_name'])) { |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | } |
303 | 303 | } |
304 | 304 | |
305 | - if (!$pMetadata->serializedName) { |
|
305 | + if ( ! $pMetadata->serializedName) { |
|
306 | 306 | $pMetadata->serializedName = $this->namingStrategy->translateName($pMetadata); |
307 | 307 | } |
308 | 308 | |
@@ -311,12 +311,12 @@ discard block |
||
311 | 311 | $metadata->isMap = $metadata->isMap || PropertyMetadata::isCollectionMap($pMetadata->type); |
312 | 312 | } |
313 | 313 | |
314 | - if (!empty($pConfig) && !empty($pConfig['name'])) { |
|
314 | + if ( ! empty($pConfig) && ! empty($pConfig['name'])) { |
|
315 | 315 | $pMetadata->name = (string) $pConfig['name']; |
316 | 316 | } |
317 | 317 | |
318 | 318 | if ( |
319 | - (ExclusionPolicy::NONE === $exclusionPolicy && !$isExclude) |
|
319 | + (ExclusionPolicy::NONE === $exclusionPolicy && ! $isExclude) |
|
320 | 320 | || (ExclusionPolicy::ALL === $exclusionPolicy && $isExpose) |
321 | 321 | ) { |
322 | 322 | $metadata->addPropertyMetadata($pMetadata); |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | |
362 | 362 | private function addClassProperties(ClassMetadata $metadata, array $config): void |
363 | 363 | { |
364 | - if (isset($config['custom_accessor_order']) && !isset($config['accessor_order'])) { |
|
364 | + if (isset($config['custom_accessor_order']) && ! isset($config['accessor_order'])) { |
|
365 | 365 | $config['accessor_order'] = 'custom'; |
366 | 366 | } |
367 | 367 | |
@@ -391,11 +391,11 @@ discard block |
||
391 | 391 | if (isset($config['discriminator']['disabled']) && true === $config['discriminator']['disabled']) { |
392 | 392 | $metadata->discriminatorDisabled = true; |
393 | 393 | } else { |
394 | - if (!isset($config['discriminator']['field_name'])) { |
|
394 | + if ( ! isset($config['discriminator']['field_name'])) { |
|
395 | 395 | throw new InvalidMetadataException('The "field_name" attribute must be set for discriminators.'); |
396 | 396 | } |
397 | 397 | |
398 | - if (!isset($config['discriminator']['map']) || !is_array($config['discriminator']['map'])) { |
|
398 | + if ( ! isset($config['discriminator']['map']) || ! is_array($config['discriminator']['map'])) { |
|
399 | 399 | throw new InvalidMetadataException( |
400 | 400 | 'The "map" attribute must be set, and be an array for discriminators.' |
401 | 401 | ); |
@@ -432,7 +432,7 @@ discard block |
||
432 | 432 | { |
433 | 433 | if (is_string($config)) { |
434 | 434 | $config = [$config]; |
435 | - } elseif (!is_array($config)) { |
|
435 | + } elseif ( ! is_array($config)) { |
|
436 | 436 | throw new InvalidMetadataException( |
437 | 437 | sprintf( |
438 | 438 | 'callback methods expects a string, or an array of strings that represent method names, but got %s.', |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | |
444 | 444 | $methods = []; |
445 | 445 | foreach ($config as $name) { |
446 | - if (!$class->hasMethod($name)) { |
|
446 | + if ( ! $class->hasMethod($name)) { |
|
447 | 447 | throw new InvalidMetadataException( |
448 | 448 | sprintf('The method %s does not exist in class %s.', $name, $class->name) |
449 | 449 | ); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | public function loadMetadataForClass(\ReflectionClass $class): ?BaseClassMetadata |
26 | 26 | { |
27 | 27 | $classMetadata = new ClassMetadata($name = $class->name); |
28 | - $fileResource = $class->getFilename(); |
|
28 | + $fileResource = $class->getFilename(); |
|
29 | 29 | if (false !== $fileResource) { |
30 | 30 | $classMetadata->fileResources[] = $fileResource; |
31 | 31 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | $propertyMetadata = new PropertyMetadata($name, $property->getName()); |
39 | 39 | |
40 | - if (!$propertyMetadata->serializedName) { |
|
40 | + if ( ! $propertyMetadata->serializedName) { |
|
41 | 41 | $propertyMetadata->serializedName = $this->namingStrategy->translateName($propertyMetadata); |
42 | 42 | } |
43 | 43 |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | $configured = false; |
81 | 81 | |
82 | 82 | $classMetadata = new ClassMetadata($name = $class->name); |
83 | - $fileResource = $class->getFilename(); |
|
83 | + $fileResource = $class->getFilename(); |
|
84 | 84 | |
85 | 85 | if (false !== $fileResource) { |
86 | 86 | $classMetadata->fileResources[] = $fileResource; |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | } |
167 | 167 | } |
168 | 168 | |
169 | - if (!$excludeAll) { |
|
169 | + if ( ! $excludeAll) { |
|
170 | 170 | foreach ($class->getProperties() as $property) { |
171 | 171 | if ($property->class !== $name || (isset($property->info) && $property->info['class'] !== $name)) { |
172 | 172 | continue; |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | } elseif ($annot instanceof Expose) { |
201 | 201 | $isExpose = true; |
202 | 202 | if (null !== $annot->if) { |
203 | - $propertyMetadata->excludeIf = $this->parseExpression('!(' . $annot->if . ')'); |
|
203 | + $propertyMetadata->excludeIf = $this->parseExpression('!('.$annot->if.')'); |
|
204 | 204 | } |
205 | 205 | } elseif ($annot instanceof Exclude) { |
206 | 206 | if (null !== $annot->if) { |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | throw new InvalidMetadataException(sprintf( |
248 | 248 | 'Invalid group name "%s" on "%s", did you mean to create multiple groups?', |
249 | 249 | implode(', ', $propertyMetadata->groups), |
250 | - $propertyMetadata->class . '->' . $propertyMetadata->name |
|
250 | + $propertyMetadata->class.'->'.$propertyMetadata->name |
|
251 | 251 | )); |
252 | 252 | } |
253 | 253 | } |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | } |
270 | 270 | } |
271 | 271 | |
272 | - if (!$propertyMetadata->serializedName) { |
|
272 | + if ( ! $propertyMetadata->serializedName) { |
|
273 | 273 | $propertyMetadata->serializedName = $this->namingStrategy->translateName($propertyMetadata); |
274 | 274 | } |
275 | 275 | |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | } |
281 | 281 | |
282 | 282 | if ( |
283 | - (ExclusionPolicy::NONE === $exclusionPolicy && !$isExclude) |
|
283 | + (ExclusionPolicy::NONE === $exclusionPolicy && ! $isExclude) |
|
284 | 284 | || (ExclusionPolicy::ALL === $exclusionPolicy && $isExpose) |
285 | 285 | ) { |
286 | 286 | $propertyMetadata->setAccessor($accessType, $accessor[0], $accessor[1]); |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | } |
290 | 290 | } |
291 | 291 | |
292 | - if (!$configured) { |
|
292 | + if ( ! $configured) { |
|
293 | 293 | // return null; |
294 | 294 | // uncomment the above line afetr a couple of months |
295 | 295 | } |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | |
307 | 307 | if (PHP_VERSION_ID >= 80000) { |
308 | 308 | $annotations = array_map( |
309 | - static function (\ReflectionAttribute $attribute): object { |
|
309 | + static function(\ReflectionAttribute $attribute): object { |
|
310 | 310 | return $attribute->newInstance(); |
311 | 311 | }, |
312 | 312 | $class->getAttributes() |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | |
330 | 330 | if (PHP_VERSION_ID >= 80000) { |
331 | 331 | $annotations = array_map( |
332 | - static function (\ReflectionAttribute $attribute): object { |
|
332 | + static function(\ReflectionAttribute $attribute): object { |
|
333 | 333 | return $attribute->newInstance(); |
334 | 334 | }, |
335 | 335 | $method->getAttributes() |
@@ -352,7 +352,7 @@ discard block |
||
352 | 352 | |
353 | 353 | if (PHP_VERSION_ID >= 80000) { |
354 | 354 | $annotations = array_map( |
355 | - static function (\ReflectionAttribute $attribute): object { |
|
355 | + static function(\ReflectionAttribute $attribute): object { |
|
356 | 356 | return $attribute->newInstance(); |
357 | 357 | }, |
358 | 358 | $property->getAttributes() |
@@ -67,7 +67,7 @@ |
||
67 | 67 | */ |
68 | 68 | $metadataDrivers = [new AnnotationOrAttributeDriver($this->propertyNamingStrategy, $this->typeParser, $this->expressionEvaluator, $annotationReader)]; |
69 | 69 | |
70 | - if (!empty($metadataDirs)) { |
|
70 | + if ( ! empty($metadataDirs)) { |
|
71 | 71 | $fileLocator = new FileLocator($metadataDirs); |
72 | 72 | |
73 | 73 | array_unshift($metadataDrivers, new XmlDriver($fileLocator, $this->propertyNamingStrategy, $this->typeParser, $this->expressionEvaluator)); |