@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | public function loadMetadataForClass(\ReflectionClass $class): ?BaseClassMetadata |
72 | 72 | { |
73 | 73 | $classMetadata = new ClassMetadata($name = $class->name); |
74 | - $fileResource = $class->getFilename(); |
|
74 | + $fileResource = $class->getFilename(); |
|
75 | 75 | |
76 | 76 | if (false !== $fileResource) { |
77 | 77 | $classMetadata->fileResources[] = $fileResource; |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | } |
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; |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | } elseif ($annot instanceof Expose) { |
186 | 186 | $isExpose = true; |
187 | 187 | if (null !== $annot->if) { |
188 | - $propertyMetadata->excludeIf = $this->parseExpression('!(' . $annot->if . ')'); |
|
188 | + $propertyMetadata->excludeIf = $this->parseExpression('!('.$annot->if.')'); |
|
189 | 189 | } |
190 | 190 | } elseif ($annot instanceof Exclude) { |
191 | 191 | if (null !== $annot->if) { |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | throw new InvalidMetadataException(sprintf( |
233 | 233 | 'Invalid group name "%s" on "%s", did you mean to create multiple groups?', |
234 | 234 | implode(', ', $propertyMetadata->groups), |
235 | - $propertyMetadata->class . '->' . $propertyMetadata->name |
|
235 | + $propertyMetadata->class.'->'.$propertyMetadata->name |
|
236 | 236 | )); |
237 | 237 | } |
238 | 238 | } |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | } |
255 | 255 | } |
256 | 256 | |
257 | - if (!$propertyMetadata->serializedName) { |
|
257 | + if ( ! $propertyMetadata->serializedName) { |
|
258 | 258 | $propertyMetadata->serializedName = $this->namingStrategy->translateName($propertyMetadata); |
259 | 259 | } |
260 | 260 | |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | } |
266 | 266 | |
267 | 267 | if ( |
268 | - (ExclusionPolicy::NONE === $exclusionPolicy && !$isExclude) |
|
268 | + (ExclusionPolicy::NONE === $exclusionPolicy && ! $isExclude) |
|
269 | 269 | || (ExclusionPolicy::ALL === $exclusionPolicy && $isExpose) |
270 | 270 | ) { |
271 | 271 | $propertyMetadata->setAccessor($accessType, $accessor[0], $accessor[1]); |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | protected function getClassAnnotations(\ReflectionClass $class): array |
13 | 13 | { |
14 | 14 | return array_map( |
15 | - static function (\ReflectionAttribute $attribute): object { |
|
15 | + static function(\ReflectionAttribute $attribute): object { |
|
16 | 16 | return $attribute->newInstance(); |
17 | 17 | }, |
18 | 18 | $class->getAttributes() |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | protected function getMethodAnnotations(\ReflectionMethod $method): array |
26 | 26 | { |
27 | 27 | return array_map( |
28 | - static function (\ReflectionAttribute $attribute): object { |
|
28 | + static function(\ReflectionAttribute $attribute): object { |
|
29 | 29 | return $attribute->newInstance(); |
30 | 30 | }, |
31 | 31 | $method->getAttributes() |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | protected function getPropertyAnnotations(\ReflectionProperty $property): array |
39 | 39 | { |
40 | 40 | return array_map( |
41 | - static function (\ReflectionAttribute $attribute): object { |
|
41 | + static function(\ReflectionAttribute $attribute): object { |
|
42 | 42 | return $attribute->newInstance(); |
43 | 43 | }, |
44 | 44 | $property->getAttributes() |
@@ -123,7 +123,7 @@ |
||
123 | 123 | */ |
124 | 124 | private function shouldTypeHint(?ReflectionType $reflectionType): bool |
125 | 125 | { |
126 | - if (!$reflectionType instanceof ReflectionNamedType) { |
|
126 | + if ( ! $reflectionType instanceof ReflectionNamedType) { |
|
127 | 127 | return false; |
128 | 128 | } |
129 | 129 |
@@ -108,25 +108,25 @@ discard block |
||
108 | 108 | if ($type instanceof ArrayTypeNode) { |
109 | 109 | $resolvedType = $this->resolveTypeFromTypeNode($type->type, $reflector); |
110 | 110 | |
111 | - return 'array<' . $resolvedType . '>'; |
|
111 | + return 'array<'.$resolvedType.'>'; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | // Generic array syntax: array<Product> | array<\Foo\Bar\Product> | array<int,Product> |
115 | 115 | if ($type instanceof GenericTypeNode) { |
116 | 116 | if ($this->isSimpleType($type->type, 'array')) { |
117 | - $resolvedTypes = array_map(function (TypeNode $node) use ($reflector) { |
|
117 | + $resolvedTypes = array_map(function(TypeNode $node) use ($reflector) { |
|
118 | 118 | return $this->resolveTypeFromTypeNode($node, $reflector); |
119 | 119 | }, $type->genericTypes); |
120 | 120 | |
121 | - return 'array<' . implode(',', $resolvedTypes) . '>'; |
|
121 | + return 'array<'.implode(',', $resolvedTypes).'>'; |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | if ($this->isSimpleType($type->type, 'list')) { |
125 | - $resolvedTypes = array_map(function (TypeNode $node) use ($reflector) { |
|
125 | + $resolvedTypes = array_map(function(TypeNode $node) use ($reflector) { |
|
126 | 126 | return $this->resolveTypeFromTypeNode($node, $reflector); |
127 | 127 | }, $type->genericTypes); |
128 | 128 | |
129 | - return 'array<int, ' . implode(',', $resolvedTypes) . '>'; |
|
129 | + return 'array<int, '.implode(',', $resolvedTypes).'>'; |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | throw new \InvalidArgumentException(sprintf("Can't use non-array generic type %s for collection in %s:%s", (string) $type->type, $reflector->getDeclaringClass()->getName(), $reflector->getName())); |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | return []; |
150 | 150 | } |
151 | 151 | |
152 | - return array_merge(...array_map(static function ($node) { |
|
152 | + return array_merge(...array_map(static function($node) { |
|
153 | 153 | if ($node->type instanceof UnionTypeNode) { |
154 | 154 | return $node->type->types; |
155 | 155 | } |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | */ |
194 | 194 | private function filterNullFromTypes(array $types): array |
195 | 195 | { |
196 | - return array_values(array_filter(array_map(function (TypeNode $node) { |
|
196 | + return array_values(array_filter(array_map(function(TypeNode $node) { |
|
197 | 197 | return $this->isNullType($node) ? null : $node; |
198 | 198 | }, $types))); |
199 | 199 | } |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | */ |
237 | 237 | private function resolveTypeFromTypeNode(TypeNode $typeNode, $reflector): string |
238 | 238 | { |
239 | - if (!($typeNode instanceof IdentifierTypeNode)) { |
|
239 | + if ( ! ($typeNode instanceof IdentifierTypeNode)) { |
|
240 | 240 | throw new \InvalidArgumentException(sprintf("Can't use unsupported type %s for collection in %s:%s", (string) $typeNode, $reflector->getDeclaringClass()->getName(), $reflector->getName())); |
241 | 241 | } |
242 | 242 | |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | return $typeHint; |
253 | 253 | } |
254 | 254 | |
255 | - $expandedClassName = $declaringClass->getNamespaceName() . '\\' . $typeHint; |
|
255 | + $expandedClassName = $declaringClass->getNamespaceName().'\\'.$typeHint; |
|
256 | 256 | if ($this->isClassOrInterface($expandedClassName)) { |
257 | 257 | return $expandedClassName; |
258 | 258 | } |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | |
287 | 287 | private function endsWith(string $statementClassToCheck, string $typeHintToSearchFor): bool |
288 | 288 | { |
289 | - $typeHintToSearchFor = '\\' . $typeHintToSearchFor; |
|
289 | + $typeHintToSearchFor = '\\'.$typeHintToSearchFor; |
|
290 | 290 | |
291 | 291 | return substr($statementClassToCheck, -strlen($typeHintToSearchFor)) === $typeHintToSearchFor; |
292 | 292 | } |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | preg_match_all(self::GROUP_USE_STATEMENTS_REGEX, $classContents, $foundGroupUseStatements); |
308 | 308 | for ($useStatementIndex = 0; $useStatementIndex < count($foundGroupUseStatements[0]); $useStatementIndex++) { |
309 | 309 | foreach (explode(',', $foundGroupUseStatements[2][$useStatementIndex]) as $singleUseStatement) { |
310 | - $foundUseStatements[] = trim($foundGroupUseStatements[1][$useStatementIndex]) . trim($singleUseStatement); |
|
310 | + $foundUseStatements[] = trim($foundGroupUseStatements[1][$useStatementIndex]).trim($singleUseStatement); |
|
311 | 311 | } |
312 | 312 | } |
313 | 313 | |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | */ |
347 | 347 | private function resolveType(string $typeHint, $reflector): string |
348 | 348 | { |
349 | - if (!$this->hasGlobalNamespacePrefix($typeHint) && !$this->isPrimitiveType($typeHint)) { |
|
349 | + if ( ! $this->hasGlobalNamespacePrefix($typeHint) && ! $this->isPrimitiveType($typeHint)) { |
|
350 | 350 | $typeHint = $this->expandClassNameUsingUseStatements($typeHint, $this->getDeclaringClassOrTrait($reflector), $reflector); |
351 | 351 | } |
352 | 352 | |
@@ -364,15 +364,15 @@ discard block |
||
364 | 364 | private function resolveTypeFromDocblock($reflector): array |
365 | 365 | { |
366 | 366 | $docComment = $reflector->getDocComment(); |
367 | - if (!$docComment && PHP_VERSION_ID >= 80000 && $reflector instanceof \ReflectionProperty && $reflector->isPromoted()) { |
|
367 | + if ( ! $docComment && PHP_VERSION_ID >= 80000 && $reflector instanceof \ReflectionProperty && $reflector->isPromoted()) { |
|
368 | 368 | $constructor = $reflector->getDeclaringClass()->getConstructor(); |
369 | - if (!$constructor) { |
|
369 | + if ( ! $constructor) { |
|
370 | 370 | return []; |
371 | 371 | } |
372 | 372 | |
373 | 373 | $docComment = $constructor->getDocComment(); |
374 | 374 | |
375 | - if (!$docComment) { |
|
375 | + if ( ! $docComment) { |
|
376 | 376 | return []; |
377 | 377 | } |
378 | 378 | |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | return $this->flattenParamTagValueTypes($reflector->getName(), $phpDocNode->getParamTagValues()); |
383 | 383 | } |
384 | 384 | |
385 | - if (!$docComment) { |
|
385 | + if ( ! $docComment) { |
|
386 | 386 | return []; |
387 | 387 | } |
388 | 388 | |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | |
427 | 427 | return sprintf('array<%s>', implode( |
428 | 428 | ',', |
429 | - array_map(static function (string $type) use ($reflector, $self) { |
|
429 | + array_map(static function(string $type) use ($reflector, $self) { |
|
430 | 430 | return $self->resolveType(trim($type), $reflector); |
431 | 431 | }, $types) |
432 | 432 | )); |
@@ -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 | ); |