Passed
Push — master ( 8fc7b2...8c329d )
by Grégoire
52s queued 11s
created
lib/Doctrine/Common/Annotations/DocParser.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
                     'type'      =>'array',
186 186
                     'required'  =>true,
187 187
                     'array_type'=>Annotation\Attribute::class,
188
-                    'value'     =>'array<' . Annotation\Attribute::class . '>'
188
+                    'value'     =>'array<'.Annotation\Attribute::class.'>'
189 189
                 ]
190 190
              ],
191 191
         ],
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
      */
378 378
     private function match(int $token): bool
379 379
     {
380
-        if ( ! $this->lexer->isNextToken($token) ) {
380
+        if (!$this->lexer->isNextToken($token)) {
381 381
             throw $this->syntaxError($this->lexer->getLiteral($token));
382 382
         }
383 383
 
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
      */
395 395
     private function matchAny(array $tokens): bool
396 396
     {
397
-        if ( ! $this->lexer->isNextTokenAny($tokens)) {
397
+        if (!$this->lexer->isNextTokenAny($tokens)) {
398 398
             throw $this->syntaxError(implode(' or ', array_map([$this->lexer, 'getLiteral'], $tokens)));
399 399
         }
400 400
 
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
             : sprintf("'%s' at position %s", $token['value'], $token['position']);
420 420
 
421 421
         if (strlen($this->context)) {
422
-            $message .= ' in ' . $this->context;
422
+            $message .= ' in '.$this->context;
423 423
         }
424 424
 
425 425
         $message .= '.';
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
         if ($metadata['is_annotation']) {
495 495
             self::$metadataParser->setTarget(Target::TARGET_CLASS);
496 496
 
497
-            foreach (self::$metadataParser->parse($docComment, 'class @' . $name) as $annotation) {
497
+            foreach (self::$metadataParser->parse($docComment, 'class @'.$name) as $annotation) {
498 498
                 if ($annotation instanceof Target) {
499 499
                     $metadata['targets']         = $annotation->targets;
500 500
                     $metadata['targets_literal'] = $annotation->literal;
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
 
524 524
                     $attribute->required = (false !== strpos($propertyComment, '@Required'));
525 525
                     $attribute->name     = $property->name;
526
-                    $attribute->type     = (false !== strpos($propertyComment, '@var') && preg_match('/@var\s+([^\s]+)/',$propertyComment, $matches))
526
+                    $attribute->type     = (false !== strpos($propertyComment, '@var') && preg_match('/@var\s+([^\s]+)/', $propertyComment, $matches))
527 527
                         ? $matches[1]
528 528
                         : 'mixed';
529 529
 
@@ -531,17 +531,17 @@  discard block
 block discarded – undo
531 531
 
532 532
                     // checks if the property has @Enum
533 533
                     if (false !== strpos($propertyComment, '@Enum')) {
534
-                        $context = 'property ' . $class->name . "::\$" . $property->name;
534
+                        $context = 'property '.$class->name."::\$".$property->name;
535 535
 
536 536
                         self::$metadataParser->setTarget(Target::TARGET_PROPERTY);
537 537
 
538 538
                         foreach (self::$metadataParser->parse($propertyComment, $context) as $annotation) {
539
-                            if ( ! $annotation instanceof Enum) {
539
+                            if (!$annotation instanceof Enum) {
540 540
                                 continue;
541 541
                             }
542 542
 
543 543
                             $metadata['enum'][$property->name]['value']   = $annotation->value;
544
-                            $metadata['enum'][$property->name]['literal'] = ( ! empty($annotation->literal))
544
+                            $metadata['enum'][$property->name]['literal'] = (!empty($annotation->literal))
545 545
                                 ? $annotation->literal
546 546
                                 : $annotation->value;
547 547
                         }
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
 
674 674
         if ('\\' !== $name[0]) {
675 675
             $pos = strpos($name, '\\');
676
-            $alias = (false === $pos)? $name : substr($name, 0, $pos);
676
+            $alias = (false === $pos) ? $name : substr($name, 0, $pos);
677 677
             $found = false;
678 678
             $loweredAlias = strtolower($alias);
679 679
 
@@ -688,20 +688,20 @@  discard block
 block discarded – undo
688 688
             } elseif (isset($this->imports[$loweredAlias])) {
689 689
                 $namespace = ltrim($this->imports[$loweredAlias], '\\');
690 690
                 $name = (false !== $pos)
691
-                    ? $namespace . substr($name, $pos)
691
+                    ? $namespace.substr($name, $pos)
692 692
                     : $namespace;
693 693
                 $found = $this->classExists($name);
694
-            } elseif ( ! isset($this->ignoredAnnotationNames[$name])
694
+            } elseif (!isset($this->ignoredAnnotationNames[$name])
695 695
                 && isset($this->imports['__NAMESPACE__'])
696
-                && $this->classExists($this->imports['__NAMESPACE__'] . '\\' . $name)
696
+                && $this->classExists($this->imports['__NAMESPACE__'].'\\'.$name)
697 697
             ) {
698 698
                 $name  = $this->imports['__NAMESPACE__'].'\\'.$name;
699 699
                 $found = true;
700
-            } elseif (! isset($this->ignoredAnnotationNames[$name]) && $this->classExists($name)) {
700
+            } elseif (!isset($this->ignoredAnnotationNames[$name]) && $this->classExists($name)) {
701 701
                 $found = true;
702 702
             }
703 703
 
704
-            if ( ! $found) {
704
+            if (!$found) {
705 705
                 if ($this->isIgnoredAnnotation($name)) {
706 706
                     return false;
707 707
                 }
@@ -710,9 +710,9 @@  discard block
 block discarded – undo
710 710
             }
711 711
         }
712 712
 
713
-        $name = ltrim($name,'\\');
713
+        $name = ltrim($name, '\\');
714 714
 
715
-        if ( ! $this->classExists($name)) {
715
+        if (!$this->classExists($name)) {
716 716
             throw AnnotationException::semanticalError(sprintf('The annotation "@%s" in %s does not exist, or could not be auto-loaded.', $name, $this->context));
717 717
         }
718 718
 
@@ -722,7 +722,7 @@  discard block
 block discarded – undo
722 722
 
723 723
 
724 724
         // collects the metadata annotation only if there is not yet
725
-        if ( ! isset(self::$annotationMetadata[$name])) {
725
+        if (!isset(self::$annotationMetadata[$name])) {
726 726
             $this->collectAnnotationMetadata($name);
727 727
         }
728 728
 
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
             // checks all declared attributes
756 756
             foreach (self::$annotationMetadata[$name]['enum'] as $property => $enum) {
757 757
                 // checks if the attribute is a valid enumerator
758
-                if (isset($values[$property]) && ! in_array($values[$property], $enum['value'])) {
758
+                if (isset($values[$property]) && !in_array($values[$property], $enum['value'])) {
759 759
                     throw AnnotationException::enumeratorError($property, $name, $this->context, $enum['literal'], $values[$property]);
760 760
                 }
761 761
             }
@@ -779,7 +779,7 @@  discard block
 block discarded – undo
779 779
 
780 780
             if ($type['type'] === 'array') {
781 781
                 // handle the case of a single value
782
-                if ( ! is_array($values[$property])) {
782
+                if (!is_array($values[$property])) {
783 783
                     $values[$property] = [$values[$property]];
784 784
                 }
785 785
 
@@ -811,7 +811,7 @@  discard block
 block discarded – undo
811 811
                 }
812 812
 
813 813
                 // handle the case if the property has no annotations
814
-                if ( ! $property = self::$annotationMetadata[$name]['default_property']) {
814
+                if (!$property = self::$annotationMetadata[$name]['default_property']) {
815 815
                     throw AnnotationException::creationError(sprintf('The annotation @%s declared on %s does not accept any values, but got %s.', $originalName, $this->context, json_encode($values)));
816 816
                 }
817 817
             }
@@ -832,13 +832,13 @@  discard block
 block discarded – undo
832 832
     {
833 833
         $values = [];
834 834
 
835
-        if ( ! $this->lexer->isNextToken(DocLexer::T_OPEN_PARENTHESIS)) {
835
+        if (!$this->lexer->isNextToken(DocLexer::T_OPEN_PARENTHESIS)) {
836 836
             return $values;
837 837
         }
838 838
 
839 839
         $this->match(DocLexer::T_OPEN_PARENTHESIS);
840 840
 
841
-        if ( ! $this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) {
841
+        if (!$this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) {
842 842
             $values = $this->Values();
843 843
         }
844 844
 
@@ -867,7 +867,7 @@  discard block
 block discarded – undo
867 867
             $token = $this->lexer->lookahead;
868 868
             $value = $this->Value();
869 869
 
870
-            if ( ! is_object($value) && ! is_array($value)) {
870
+            if (!is_object($value) && !is_array($value)) {
871 871
                 throw $this->syntaxError('Value', $token);
872 872
             }
873 873
 
@@ -877,10 +877,10 @@  discard block
 block discarded – undo
877 877
         foreach ($values as $k => $value) {
878 878
             if (is_object($value) && $value instanceof stdClass) {
879 879
                 $values[$value->name] = $value->value;
880
-            } else if ( ! isset($values['value'])){
880
+            } else if (!isset($values['value'])) {
881 881
                 $values['value'] = $value;
882 882
             } else {
883
-                if ( ! is_array($values['value'])) {
883
+                if (!is_array($values['value'])) {
884 884
                     $values['value'] = [$values['value']];
885 885
                 }
886 886
 
@@ -904,7 +904,7 @@  discard block
 block discarded – undo
904 904
     {
905 905
         $identifier = $this->Identifier();
906 906
 
907
-        if ( ! defined($identifier) && false !== strpos($identifier, '::') && '\\' !== $identifier[0]) {
907
+        if (!defined($identifier) && false !== strpos($identifier, '::') && '\\' !== $identifier[0]) {
908 908
             list($className, $const) = explode('::', $identifier);
909 909
 
910 910
             $pos = strpos($className, '\\');
@@ -926,12 +926,12 @@  discard block
 block discarded – undo
926 926
                 case isset($this->imports[$loweredAlias]):
927 927
                     $found     = true;
928 928
                     $className = (false !== $pos)
929
-                        ? $this->imports[$loweredAlias] . substr($className, $pos)
929
+                        ? $this->imports[$loweredAlias].substr($className, $pos)
930 930
                         : $this->imports[$loweredAlias];
931 931
                     break;
932 932
 
933 933
                 default:
934
-                    if(isset($this->imports['__NAMESPACE__'])) {
934
+                    if (isset($this->imports['__NAMESPACE__'])) {
935 935
                         $ns = $this->imports['__NAMESPACE__'];
936 936
 
937 937
                         if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) {
@@ -943,14 +943,14 @@  discard block
 block discarded – undo
943 943
             }
944 944
 
945 945
             if ($found) {
946
-                 $identifier = $className . '::' . $const;
946
+                 $identifier = $className.'::'.$const;
947 947
             }
948 948
         }
949 949
 
950 950
         /**
951 951
          * Checks if identifier ends with ::class and remove the leading backslash if it exists.
952 952
          */
953
-        if ($this->identifierEndsWithClassConstant($identifier) && ! $this->identifierStartsWithBackslash($identifier)) {
953
+        if ($this->identifierEndsWithClassConstant($identifier) && !$this->identifierStartsWithBackslash($identifier)) {
954 954
             return substr($identifier, 0, $this->getClassConstantPositionInIdentifier($identifier));
955 955
         }
956 956
         if ($this->identifierEndsWithClassConstant($identifier) && $this->identifierStartsWithBackslash($identifier)) {
@@ -990,7 +990,7 @@  discard block
 block discarded – undo
990 990
     private function Identifier(): string
991 991
     {
992 992
         // check if we have an annotation
993
-        if ( ! $this->lexer->isNextTokenAny(self::$classIdentifiers)) {
993
+        if (!$this->lexer->isNextTokenAny(self::$classIdentifiers)) {
994 994
             throw $this->syntaxError('namespace separator or identifier');
995 995
         }
996 996
 
@@ -1006,7 +1006,7 @@  discard block
 block discarded – undo
1006 1006
             $this->match(DocLexer::T_NAMESPACE_SEPARATOR);
1007 1007
             $this->matchAny(self::$classIdentifiers);
1008 1008
 
1009
-            $className .= '\\' . $this->lexer->token['value'];
1009
+            $className .= '\\'.$this->lexer->token['value'];
1010 1010
         }
1011 1011
 
1012 1012
         return $className;
@@ -1058,11 +1058,11 @@  discard block
 block discarded – undo
1058 1058
 
1059 1059
             case DocLexer::T_INTEGER:
1060 1060
                 $this->match(DocLexer::T_INTEGER);
1061
-                return (int)$this->lexer->token['value'];
1061
+                return (int) $this->lexer->token['value'];
1062 1062
 
1063 1063
             case DocLexer::T_FLOAT:
1064 1064
                 $this->match(DocLexer::T_FLOAT);
1065
-                return (float)$this->lexer->token['value'];
1065
+                return (float) $this->lexer->token['value'];
1066 1066
 
1067 1067
             case DocLexer::T_TRUE:
1068 1068
                 $this->match(DocLexer::T_TRUE);
@@ -1187,9 +1187,9 @@  discard block
 block discarded – undo
1187 1187
         }
1188 1188
 
1189 1189
         foreach (array_keys($this->ignoredAnnotationNamespaces) as $ignoredAnnotationNamespace) {
1190
-            $ignoredAnnotationNamespace = rtrim($ignoredAnnotationNamespace, '\\') . '\\';
1190
+            $ignoredAnnotationNamespace = rtrim($ignoredAnnotationNamespace, '\\').'\\';
1191 1191
 
1192
-            if (0 === stripos(rtrim($name, '\\') . '\\', $ignoredAnnotationNamespace)) {
1192
+            if (0 === stripos(rtrim($name, '\\').'\\', $ignoredAnnotationNamespace)) {
1193 1193
                 return true;
1194 1194
             }
1195 1195
         }
Please login to merge, or discard this patch.