Passed
Push — master ( ebe4ee...0fa5e4 )
by Asmir
04:17 queued 02:00
created
src/XmlDeserializationVisitor.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
         if (false !== stripos($data, '<!doctype')) {
86 86
             $internalSubset = $this->getDomDocumentTypeEntitySubset($data);
87
-            if (!in_array($internalSubset, $this->doctypeWhitelist, true)) {
87
+            if ( ! in_array($internalSubset, $this->doctypeWhitelist, true)) {
88 88
                 throw new InvalidArgumentException(sprintf(
89 89
                     'The document type "%s" is not allowed. If it is safe, you may add it to the whitelist configuration.',
90 90
                     $internalSubset
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
             $nodes = $data->xpath($entryName);
210 210
         }
211 211
 
212
-        if (null === $nodes || !\count($nodes)) {
212
+        if (null === $nodes || ! \count($nodes)) {
213 213
             return [];
214 214
         }
215 215
 
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
                 $nodes = $data->children($namespace)->$entryName;
238 238
                 foreach ($nodes as $v) {
239 239
                     $attrs = $v->attributes();
240
-                    if (!isset($attrs[$this->currentMetadata->xmlKeyAttribute])) {
240
+                    if ( ! isset($attrs[$this->currentMetadata->xmlKeyAttribute])) {
241 241
                         throw new RuntimeException(sprintf('The key attribute "%s" must be set for each entry of the map.', $this->currentMetadata->xmlKeyAttribute));
242 242
                     }
243 243
 
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
                 return (string) $data->attributes($metadata->xmlDiscriminatorNamespace)->{$metadata->discriminatorFieldName};
268 268
 
269 269
             // Check XML element with namespace for discriminatorFieldName
270
-            case !$metadata->xmlDiscriminatorAttribute && null !== $metadata->xmlDiscriminatorNamespace && isset($data->children($metadata->xmlDiscriminatorNamespace)->{$metadata->discriminatorFieldName}):
270
+            case ! $metadata->xmlDiscriminatorAttribute && null !== $metadata->xmlDiscriminatorNamespace && isset($data->children($metadata->xmlDiscriminatorNamespace)->{$metadata->discriminatorFieldName}):
271 271
                 return (string) $data->children($metadata->xmlDiscriminatorNamespace)->{$metadata->discriminatorFieldName};
272 272
 
273 273
             // Check XML element for discriminatorFieldName
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
         $name = $metadata->serializedName;
298 298
 
299 299
         if (true === $metadata->inline) {
300
-            if (!$metadata->type) {
300
+            if ( ! $metadata->type) {
301 301
                 throw RuntimeException::noMetadataForProperty($metadata->class, $metadata->name);
302 302
             }
303 303
 
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
         if ($metadata->xmlAttribute) {
308 308
             $attributes = $data->attributes($metadata->xmlNamespace);
309 309
             if (isset($attributes[$name])) {
310
-                if (!$metadata->type) {
310
+                if ( ! $metadata->type) {
311 311
                     throw RuntimeException::noMetadataForProperty($metadata->class, $metadata->name);
312 312
                 }
313 313
 
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
         }
319 319
 
320 320
         if ($metadata->xmlValue) {
321
-            if (!$metadata->type) {
321
+            if ( ! $metadata->type) {
322 322
                 throw RuntimeException::noMetadataForProperty($metadata->class, $metadata->name);
323 323
             }
324 324
 
@@ -327,12 +327,12 @@  discard block
 block discarded – undo
327 327
 
328 328
         if ($metadata->xmlCollection) {
329 329
             $enclosingElem = $data;
330
-            if (!$metadata->xmlCollectionInline) {
330
+            if ( ! $metadata->xmlCollectionInline) {
331 331
                 $enclosingElem = $data->children($metadata->xmlNamespace)->$name;
332 332
             }
333 333
 
334 334
             $this->setCurrentMetadata($metadata);
335
-            if (!$metadata->type) {
335
+            if ( ! $metadata->type) {
336 336
                 throw RuntimeException::noMetadataForProperty($metadata->class, $metadata->name);
337 337
             }
338 338
 
@@ -344,13 +344,13 @@  discard block
 block discarded – undo
344 344
 
345 345
         if ($metadata->xmlNamespace) {
346 346
             $node = $data->children($metadata->xmlNamespace)->$name;
347
-            if (!$node->count()) {
347
+            if ( ! $node->count()) {
348 348
                 throw new NotAcceptableException();
349 349
             }
350 350
         } elseif ('' === $metadata->xmlNamespace) {
351 351
             // See #1087 - element must be like: <element xmlns="" /> - https://www.w3.org/TR/REC-xml-names/#iri-use
352 352
             // Use of an empty string in a namespace declaration turns it into an "undeclaration".
353
-            $nodes = $data->xpath('./' . $name);
353
+            $nodes = $data->xpath('./'.$name);
354 354
             if (empty($nodes)) {
355 355
                 throw new NotAcceptableException();
356 356
             }
@@ -361,9 +361,9 @@  discard block
 block discarded – undo
361 361
             if (isset($namespaces[''])) {
362 362
                 $prefix = uniqid('ns-');
363 363
                 $data->registerXPathNamespace($prefix, $namespaces['']);
364
-                $nodes = $data->xpath('./' . $prefix . ':' . $name);
364
+                $nodes = $data->xpath('./'.$prefix.':'.$name);
365 365
             } else {
366
-                $nodes = $data->xpath('./' . $name);
366
+                $nodes = $data->xpath('./'.$name);
367 367
             }
368 368
 
369 369
             if (empty($nodes)) {
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
             $this->setCurrentMetadata($metadata);
378 378
         }
379 379
 
380
-        if (!$metadata->type) {
380
+        if ( ! $metadata->type) {
381 381
             throw RuntimeException::noMetadataForProperty($metadata->class, $metadata->name);
382 382
         }
383 383
 
Please login to merge, or discard this patch.
src/Exclusion/GroupsExclusionStrategy.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/GraphNavigator/SerializationGraphNavigator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Metadata/Driver/AttributeDriver/AttributeReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
     private function buildAnnotation(array $attributes): ?object
57 57
     {
58
-        if (!isset($attributes[0])) {
58
+        if ( ! isset($attributes[0])) {
59 59
             return null;
60 60
         }
61 61
 
Please login to merge, or discard this patch.
src/Annotation/AnnotationUtilsTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Builder/DefaultDriverFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
         $driver = new AnnotationDriver($annotationReader, $this->propertyNamingStrategy, $this->typeParser);
52 52
 
53
-        if (!empty($metadataDirs)) {
53
+        if ( ! empty($metadataDirs)) {
54 54
             $fileLocator = new FileLocator($metadataDirs);
55 55
             $driver = new DriverChain([
56 56
                 new YamlDriver($fileLocator, $this->propertyNamingStrategy, $this->typeParser, $this->expressionEvaluator),
Please login to merge, or discard this patch.
src/Twig/SerializerExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Twig/SerializerRuntimeExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Handler/DateHandler.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                     'type' => $type,
48 48
                     'format' => $format,
49 49
                     'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
50
-                    'method' => 'serialize' . $type,
50
+                    'method' => 'serialize'.$type,
51 51
                 ];
52 52
             }
53 53
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
                 'type' => \DateTimeInterface::class,
56 56
                 'direction' => GraphNavigatorInterface::DIRECTION_DESERIALIZATION,
57 57
                 'format' => $format,
58
-                'method' => 'deserializeDateTimeFrom' . ucfirst($format),
58
+                'method' => 'deserializeDateTimeFrom'.ucfirst($format),
59 59
             ];
60 60
 
61 61
             $methods[] = [
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      */
232 232
     private function parseDateTime($data, array $type, bool $immutable = false): \DateTimeInterface
233 233
     {
234
-        $timezone = !empty($type['params'][1]) ? new \DateTimeZone($type['params'][1]) : $this->defaultTimezone;
234
+        $timezone = ! empty($type['params'][1]) ? new \DateTimeZone($type['params'][1]) : $this->defaultTimezone;
235 235
         $formats = $this->getDeserializationFormats($type);
236 236
 
237 237
         $formatTried = [];
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
         throw new RuntimeException(sprintf(
257 257
             'Invalid datetime "%s", expected one of the format %s.',
258 258
             $data,
259
-            '"' . implode('", "', $formatTried) . '"'
259
+            '"'.implode('", "', $formatTried).'"'
260 260
         ));
261 261
     }
262 262
 
@@ -304,15 +304,15 @@  discard block
 block discarded – undo
304 304
         $format = 'P';
305 305
 
306 306
         if (0 < $dateInterval->y) {
307
-            $format .= $dateInterval->y . 'Y';
307
+            $format .= $dateInterval->y.'Y';
308 308
         }
309 309
 
310 310
         if (0 < $dateInterval->m) {
311
-            $format .= $dateInterval->m . 'M';
311
+            $format .= $dateInterval->m.'M';
312 312
         }
313 313
 
314 314
         if (0 < $dateInterval->d) {
315
-            $format .= $dateInterval->d . 'D';
315
+            $format .= $dateInterval->d.'D';
316 316
         }
317 317
 
318 318
         if (0 < $dateInterval->h || 0 < $dateInterval->i || 0 < $dateInterval->s) {
@@ -320,15 +320,15 @@  discard block
 block discarded – undo
320 320
         }
321 321
 
322 322
         if (0 < $dateInterval->h) {
323
-            $format .= $dateInterval->h . 'H';
323
+            $format .= $dateInterval->h.'H';
324 324
         }
325 325
 
326 326
         if (0 < $dateInterval->i) {
327
-            $format .= $dateInterval->i . 'M';
327
+            $format .= $dateInterval->i.'M';
328 328
         }
329 329
 
330 330
         if (0 < $dateInterval->s) {
331
-            $format .= $dateInterval->s . 'S';
331
+            $format .= $dateInterval->s.'S';
332 332
         }
333 333
 
334 334
         if ('P' === $format) {
Please login to merge, or discard this patch.