| @@ -55,7 +55,7 @@ discard block | ||
| 55 | 55 | */ | 
| 56 | 56 | public function __construct(Reader $reader, $cacheDir, $debug = false, $umask = 0002) | 
| 57 | 57 |      { | 
| 58 | -        if ( ! is_int($umask)) { | |
| 58 | +        if (!is_int($umask)) { | |
| 59 | 59 | throw new \InvalidArgumentException(sprintf( | 
| 60 | 60 | 'The parameter umask must be an integer, was: %s', | 
| 61 | 61 | gettype($umask) | 
| @@ -78,7 +78,7 @@ discard block | ||
| 78 | 78 | */ | 
| 79 | 79 | public function getClassAnnotations(\ReflectionClass $class) | 
| 80 | 80 |      { | 
| 81 | -        if ( ! isset($this->classNameHashes[$class->name])) { | |
| 81 | +        if (!isset($this->classNameHashes[$class->name])) { | |
| 82 | 82 | $this->classNameHashes[$class->name] = sha1($class->name); | 
| 83 | 83 | } | 
| 84 | 84 | $key = $this->classNameHashes[$class->name]; | 
| @@ -113,7 +113,7 @@ discard block | ||
| 113 | 113 | public function getPropertyAnnotations(\ReflectionProperty $property) | 
| 114 | 114 |      { | 
| 115 | 115 | $class = $property->getDeclaringClass(); | 
| 116 | -        if ( ! isset($this->classNameHashes[$class->name])) { | |
| 116 | +        if (!isset($this->classNameHashes[$class->name])) { | |
| 117 | 117 | $this->classNameHashes[$class->name] = sha1($class->name); | 
| 118 | 118 | } | 
| 119 | 119 | $key = $this->classNameHashes[$class->name].'$'.$property->getName(); | 
| @@ -148,7 +148,7 @@ discard block | ||
| 148 | 148 | public function getMethodAnnotations(\ReflectionMethod $method) | 
| 149 | 149 |      { | 
| 150 | 150 | $class = $method->getDeclaringClass(); | 
| 151 | -        if ( ! isset($this->classNameHashes[$class->name])) { | |
| 151 | +        if (!isset($this->classNameHashes[$class->name])) { | |
| 152 | 152 | $this->classNameHashes[$class->name] = sha1($class->name); | 
| 153 | 153 | } | 
| 154 | 154 | $key = $this->classNameHashes[$class->name].'#'.$method->getName(); | 
| @@ -36,8 +36,8 @@ discard block | ||
| 36 | 36 | } | 
| 37 | 37 | |
| 38 | 38 | $namespace = preg_quote($class->getNamespaceName()); | 
| 39 | -        $content = preg_replace('/^.*?(\bnamespace\s+' . $namespace . '\s*[;{].*)$/s', '\\1', $content); | |
| 40 | -        $tokenizer = new TokenParser('<?php ' . $content); | |
| 39 | +        $content = preg_replace('/^.*?(\bnamespace\s+'.$namespace.'\s*[;{].*)$/s', '\\1', $content); | |
| 40 | +        $tokenizer = new TokenParser('<?php '.$content); | |
| 41 | 41 | |
| 42 | 42 | $statements = $tokenizer->parseUseStatements($class->getNamespaceName()); | 
| 43 | 43 | |
| @@ -54,7 +54,7 @@ discard block | ||
| 54 | 54 | */ | 
| 55 | 55 | private function getFileContent($filename, $lineNumber) | 
| 56 | 56 |      { | 
| 57 | -        if ( ! is_file($filename)) { | |
| 57 | +        if (!is_file($filename)) { | |
| 58 | 58 | return null; | 
| 59 | 59 | } | 
| 60 | 60 | |
| @@ -22,7 +22,7 @@ discard block | ||
| 22 | 22 | */ | 
| 23 | 23 | public static function syntaxError($message) | 
| 24 | 24 |      { | 
| 25 | -        return new self('[Syntax Error] ' . $message); | |
| 25 | +        return new self('[Syntax Error] '.$message); | |
| 26 | 26 | } | 
| 27 | 27 | |
| 28 | 28 | /** | 
| @@ -34,7 +34,7 @@ discard block | ||
| 34 | 34 | */ | 
| 35 | 35 | public static function semanticalError($message) | 
| 36 | 36 |      { | 
| 37 | -        return new self('[Semantical Error] ' . $message); | |
| 37 | +        return new self('[Semantical Error] '.$message); | |
| 38 | 38 | } | 
| 39 | 39 | |
| 40 | 40 | /** | 
| @@ -49,7 +49,7 @@ discard block | ||
| 49 | 49 | */ | 
| 50 | 50 | public static function creationError($message) | 
| 51 | 51 |      { | 
| 52 | -        return new self('[Creation Error] ' . $message); | |
| 52 | +        return new self('[Creation Error] '.$message); | |
| 53 | 53 | } | 
| 54 | 54 | |
| 55 | 55 | /** | 
| @@ -63,7 +63,7 @@ discard block | ||
| 63 | 63 | */ | 
| 64 | 64 | public static function typeError($message) | 
| 65 | 65 |      { | 
| 66 | -        return new self('[Type Error] ' . $message); | |
| 66 | +        return new self('[Type Error] '.$message); | |
| 67 | 67 | } | 
| 68 | 68 | |
| 69 | 69 | /** | 
| @@ -81,7 +81,7 @@ discard block | ||
| 81 | 81 | return self::semanticalError(sprintf( | 
| 82 | 82 | "Couldn't find constant %s%s.", | 
| 83 | 83 | $identifier, | 
| 84 | - $context ? ', ' . $context : '' | |
| 84 | + $context ? ', '.$context : '' | |
| 85 | 85 | )); | 
| 86 | 86 | } | 
| 87 | 87 | |
| @@ -106,7 +106,7 @@ discard block | ||
| 106 | 106 | $annotationName, | 
| 107 | 107 | $context, | 
| 108 | 108 | $expected, | 
| 109 | - is_object($actual) ? 'an instance of ' . get_class($actual) : gettype($actual) | |
| 109 | + is_object($actual) ? 'an instance of '.get_class($actual) : gettype($actual) | |
| 110 | 110 | )); | 
| 111 | 111 | } | 
| 112 | 112 | |
| @@ -123,7 +123,7 @@ discard block | ||
| 123 | 123 | */ | 
| 124 | 124 | public static function registerUniqueLoader(callable $callable) : void | 
| 125 | 125 |      { | 
| 126 | -        if ( ! in_array($callable, self::$loaders, true) ) { | |
| 126 | +        if (!in_array($callable, self::$loaders, true)) { | |
| 127 | 127 | self::registerLoader($callable); | 
| 128 | 128 | } | 
| 129 | 129 | } | 
| @@ -143,7 +143,7 @@ discard block | ||
| 143 | 143 | |
| 144 | 144 |          foreach (self::$autoloadNamespaces AS $namespace => $dirs) { | 
| 145 | 145 |              if (\strpos($class, $namespace) === 0) { | 
| 146 | -                $file = \str_replace('\\', \DIRECTORY_SEPARATOR, $class) . '.php'; | |
| 146 | +                $file = \str_replace('\\', \DIRECTORY_SEPARATOR, $class).'.php'; | |
| 147 | 147 | |
| 148 | 148 |                  if ($dirs === null) { | 
| 149 | 149 |                      if ($path = stream_resolve_include_path($file)) { | 
| @@ -151,9 +151,9 @@ discard block | ||
| 151 | 151 | return true; | 
| 152 | 152 | } | 
| 153 | 153 |                  } else { | 
| 154 | -                    foreach((array) $dirs AS $dir) { | |
| 155 | -                        if (is_file($dir . \DIRECTORY_SEPARATOR . $file)) { | |
| 156 | - require $dir . \DIRECTORY_SEPARATOR . $file; | |
| 154 | +                    foreach ((array) $dirs AS $dir) { | |
| 155 | +                        if (is_file($dir.\DIRECTORY_SEPARATOR.$file)) { | |
| 156 | + require $dir.\DIRECTORY_SEPARATOR.$file; | |
| 157 | 157 | return true; | 
| 158 | 158 | } | 
| 159 | 159 | } | 
| @@ -38,12 +38,12 @@ discard block | ||
| 38 | 38 | */ | 
| 39 | 39 | public function __construct(array $values) | 
| 40 | 40 |      { | 
| 41 | -        if ( ! isset($values['literal'])) { | |
| 41 | +        if (!isset($values['literal'])) { | |
| 42 | 42 | $values['literal'] = []; | 
| 43 | 43 | } | 
| 44 | 44 | |
| 45 | 45 |          foreach ($values['value'] as $var) { | 
| 46 | -            if( ! is_scalar($var)) { | |
| 46 | +            if (!is_scalar($var)) { | |
| 47 | 47 | throw new \InvalidArgumentException(sprintf( | 
| 48 | 48 | '@Enum supports only scalar values "%s" given.', | 
| 49 | 49 | is_object($var) ? get_class($var) : gettype($var) | 
| @@ -52,10 +52,10 @@ discard block | ||
| 52 | 52 | } | 
| 53 | 53 | |
| 54 | 54 |          foreach ($values['literal'] as $key => $var) { | 
| 55 | -            if( ! in_array($key, $values['value'])) { | |
| 55 | +            if (!in_array($key, $values['value'])) { | |
| 56 | 56 | throw new \InvalidArgumentException(sprintf( | 
| 57 | 57 | 'Undefined enumerator value "%s" for literal "%s".', | 
| 58 | - $key , $var | |
| 58 | + $key, $var | |
| 59 | 59 | )); | 
| 60 | 60 | } | 
| 61 | 61 | } | 
| @@ -57,13 +57,13 @@ discard block | ||
| 57 | 57 | */ | 
| 58 | 58 | public function __construct(array $values) | 
| 59 | 59 |      { | 
| 60 | -        if (!isset($values['value'])){ | |
| 60 | +        if (!isset($values['value'])) { | |
| 61 | 61 | $values['value'] = null; | 
| 62 | 62 | } | 
| 63 | -        if (is_string($values['value'])){ | |
| 63 | +        if (is_string($values['value'])) { | |
| 64 | 64 | $values['value'] = [$values['value']]; | 
| 65 | 65 | } | 
| 66 | -        if (!is_array($values['value'])){ | |
| 66 | +        if (!is_array($values['value'])) { | |
| 67 | 67 | throw new \InvalidArgumentException( | 
| 68 | 68 |                  sprintf('@Target expects either a string value, or an array of strings, "%s" given.', | 
| 69 | 69 | is_object($values['value']) ? get_class($values['value']) : gettype($values['value']) | 
| @@ -73,10 +73,10 @@ discard block | ||
| 73 | 73 | |
| 74 | 74 | $bitmask = 0; | 
| 75 | 75 |          foreach ($values['value'] as $literal) { | 
| 76 | -            if(!isset(self::$map[$literal])){ | |
| 76 | +            if (!isset(self::$map[$literal])) { | |
| 77 | 77 | throw new \InvalidArgumentException( | 
| 78 | 78 |                      sprintf('Invalid Target "%s". Available targets: [%s]', | 
| 79 | -                            $literal,  implode(', ', array_keys(self::$map))) | |
| 79 | +                            $literal, implode(', ', array_keys(self::$map))) | |
| 80 | 80 | ); | 
| 81 | 81 | } | 
| 82 | 82 | $bitmask |= self::$map[$literal]; | 
| @@ -241,9 +241,9 @@ | ||
| 241 | 241 | return $this->loadedFilemtimes[$filename]; | 
| 242 | 242 | } | 
| 243 | 243 | |
| 244 | - $parent = $class->getParentClass(); | |
| 244 | + $parent = $class->getParentClass(); | |
| 245 | 245 | |
| 246 | - $lastModification = max(array_merge( | |
| 246 | + $lastModification = max(array_merge( | |
| 247 | 247 | [$filename ? filemtime($filename) : 0], | 
| 248 | 248 | array_map([$this, 'getTraitLastModificationTime'], $class->getTraits()), | 
| 249 | 249 | array_map([$this, 'getLastModification'], $class->getInterfaces()), | 
| @@ -152,7 +152,7 @@ discard block | ||
| 152 | 152 | 'array_type'=>'string', | 
| 153 | 153 | 'value' =>'array<string>' | 
| 154 | 154 | ] | 
| 155 | - ], | |
| 155 | + ], | |
| 156 | 156 | ], | 
| 157 | 157 | Annotation\Attribute::class => [ | 
| 158 | 158 | 'is_annotation' => true, | 
| @@ -181,7 +181,7 @@ discard block | ||
| 181 | 181 | 'type' =>'boolean', | 
| 182 | 182 | 'value' =>'boolean' | 
| 183 | 183 | ] | 
| 184 | - ], | |
| 184 | + ], | |
| 185 | 185 | ], | 
| 186 | 186 | Annotation\Attributes::class => [ | 
| 187 | 187 | 'is_annotation' => true, | 
| @@ -199,7 +199,7 @@ discard block | ||
| 199 | 199 | 'array_type'=>Annotation\Attribute::class, | 
| 200 | 200 | 'value' =>'array<' . Annotation\Attribute::class . '>' | 
| 201 | 201 | ] | 
| 202 | - ], | |
| 202 | + ], | |
| 203 | 203 | ], | 
| 204 | 204 | Annotation\Enum::class => [ | 
| 205 | 205 | 'is_annotation' => true, | 
| @@ -219,7 +219,7 @@ discard block | ||
| 219 | 219 | 'type' => 'array', | 
| 220 | 220 | 'required' => false, | 
| 221 | 221 | ], | 
| 222 | - ], | |
| 222 | + ], | |
| 223 | 223 | ], | 
| 224 | 224 | ]; | 
| 225 | 225 | |
| @@ -769,7 +769,7 @@ discard block | ||
| 769 | 769 |          if (0 === (self::$annotationMetadata[$name]['targets'] & $target) && $target) { | 
| 770 | 770 | throw AnnotationException::semanticalError( | 
| 771 | 771 |                  sprintf('Annotation @%s is not allowed to be declared on %s. You may only use this annotation on these code elements: %s.', | 
| 772 | - $originalName, $this->context, self::$annotationMetadata[$name]['targets_literal']) | |
| 772 | + $originalName, $this->context, self::$annotationMetadata[$name]['targets_literal']) | |
| 773 | 773 | ); | 
| 774 | 774 | } | 
| 775 | 775 | |
| @@ -938,9 +938,9 @@ discard block | ||
| 938 | 938 | case !empty ($this->namespaces): | 
| 939 | 939 |                      foreach ($this->namespaces as $ns) { | 
| 940 | 940 |                          if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) { | 
| 941 | - $className = $ns.'\\'.$className; | |
| 942 | - $found = true; | |
| 943 | - break; | |
| 941 | + $className = $ns.'\\'.$className; | |
| 942 | + $found = true; | |
| 943 | + break; | |
| 944 | 944 | } | 
| 945 | 945 | } | 
| 946 | 946 | break; | 
| @@ -965,7 +965,7 @@ discard block | ||
| 965 | 965 | } | 
| 966 | 966 | |
| 967 | 967 |              if ($found) { | 
| 968 | - $identifier = $className . '::' . $const; | |
| 968 | + $identifier = $className . '::' . $const; | |
| 969 | 969 | } | 
| 970 | 970 | } | 
| 971 | 971 | |
| @@ -180,7 +180,7 @@ discard block | ||
| 180 | 180 | 'type' =>'array', | 
| 181 | 181 | 'required' =>true, | 
| 182 | 182 | 'array_type'=>Annotation\Attribute::class, | 
| 183 | - 'value' =>'array<' . Annotation\Attribute::class . '>' | |
| 183 | + 'value' =>'array<'.Annotation\Attribute::class.'>' | |
| 184 | 184 | ] | 
| 185 | 185 | ], | 
| 186 | 186 | ], | 
| @@ -373,7 +373,7 @@ discard block | ||
| 373 | 373 | */ | 
| 374 | 374 | private function match($token) | 
| 375 | 375 |      { | 
| 376 | -        if ( ! $this->lexer->isNextToken($token) ) { | |
| 376 | +        if (!$this->lexer->isNextToken($token)) { | |
| 377 | 377 | $this->syntaxError($this->lexer->getLiteral($token)); | 
| 378 | 378 | } | 
| 379 | 379 | |
| @@ -392,7 +392,7 @@ discard block | ||
| 392 | 392 | */ | 
| 393 | 393 | private function matchAny(array $tokens) | 
| 394 | 394 |      { | 
| 395 | -        if ( ! $this->lexer->isNextTokenAny($tokens)) { | |
| 395 | +        if (!$this->lexer->isNextTokenAny($tokens)) { | |
| 396 | 396 |              $this->syntaxError(implode(' or ', array_map([$this->lexer, 'getLiteral'], $tokens))); | 
| 397 | 397 | } | 
| 398 | 398 | |
| @@ -421,7 +421,7 @@ discard block | ||
| 421 | 421 |              : sprintf("'%s' at position %s", $token['value'], $token['position']); | 
| 422 | 422 | |
| 423 | 423 |          if (strlen($this->context)) { | 
| 424 | - $message .= ' in ' . $this->context; | |
| 424 | + $message .= ' in '.$this->context; | |
| 425 | 425 | } | 
| 426 | 426 | |
| 427 | 427 | $message .= '.'; | 
| @@ -499,7 +499,7 @@ discard block | ||
| 499 | 499 |          if ($metadata['is_annotation']) { | 
| 500 | 500 | self::$metadataParser->setTarget(Target::TARGET_CLASS); | 
| 501 | 501 | |
| 502 | -            foreach (self::$metadataParser->parse($docComment, 'class @' . $name) as $annotation) { | |
| 502 | +            foreach (self::$metadataParser->parse($docComment, 'class @'.$name) as $annotation) { | |
| 503 | 503 |                  if ($annotation instanceof Target) { | 
| 504 | 504 | $metadata['targets'] = $annotation->targets; | 
| 505 | 505 | $metadata['targets_literal'] = $annotation->literal; | 
| @@ -528,7 +528,7 @@ discard block | ||
| 528 | 528 | |
| 529 | 529 | $attribute->required = (false !== strpos($propertyComment, '@Required')); | 
| 530 | 530 | $attribute->name = $property->name; | 
| 531 | -                    $attribute->type     = (false !== strpos($propertyComment, '@var') && preg_match('/@var\s+([^\s]+)/',$propertyComment, $matches)) | |
| 531 | +                    $attribute->type     = (false !== strpos($propertyComment, '@var') && preg_match('/@var\s+([^\s]+)/', $propertyComment, $matches)) | |
| 532 | 532 | ? $matches[1] | 
| 533 | 533 | : 'mixed'; | 
| 534 | 534 | |
| @@ -536,17 +536,17 @@ discard block | ||
| 536 | 536 | |
| 537 | 537 | // checks if the property has @Enum | 
| 538 | 538 |                      if (false !== strpos($propertyComment, '@Enum')) { | 
| 539 | - $context = 'property ' . $class->name . "::\$" . $property->name; | |
| 539 | + $context = 'property '.$class->name."::\$".$property->name; | |
| 540 | 540 | |
| 541 | 541 | self::$metadataParser->setTarget(Target::TARGET_PROPERTY); | 
| 542 | 542 | |
| 543 | 543 |                          foreach (self::$metadataParser->parse($propertyComment, $context) as $annotation) { | 
| 544 | -                            if ( ! $annotation instanceof Enum) { | |
| 544 | +                            if (!$annotation instanceof Enum) { | |
| 545 | 545 | continue; | 
| 546 | 546 | } | 
| 547 | 547 | |
| 548 | 548 | $metadata['enum'][$property->name]['value'] = $annotation->value; | 
| 549 | - $metadata['enum'][$property->name]['literal'] = ( ! empty($annotation->literal)) | |
| 549 | + $metadata['enum'][$property->name]['literal'] = (!empty($annotation->literal)) | |
| 550 | 550 | ? $annotation->literal | 
| 551 | 551 | : $annotation->value; | 
| 552 | 552 | } | 
| @@ -681,7 +681,7 @@ discard block | ||
| 681 | 681 | |
| 682 | 682 |          if ('\\' !== $name[0]) { | 
| 683 | 683 | $pos = strpos($name, '\\'); | 
| 684 | - $alias = (false === $pos)? $name : substr($name, 0, $pos); | |
| 684 | + $alias = (false === $pos) ? $name : substr($name, 0, $pos); | |
| 685 | 685 | $found = false; | 
| 686 | 686 | $loweredAlias = strtolower($alias); | 
| 687 | 687 | |
| @@ -696,20 +696,20 @@ discard block | ||
| 696 | 696 |              } elseif (isset($this->imports[$loweredAlias])) { | 
| 697 | 697 | $namespace = ltrim($this->imports[$loweredAlias], '\\'); | 
| 698 | 698 | $name = (false !== $pos) | 
| 699 | - ? $namespace . substr($name, $pos) | |
| 699 | + ? $namespace.substr($name, $pos) | |
| 700 | 700 | : $namespace; | 
| 701 | 701 | $found = $this->classExists($name); | 
| 702 | - } elseif ( ! isset($this->ignoredAnnotationNames[$name]) | |
| 702 | + } elseif (!isset($this->ignoredAnnotationNames[$name]) | |
| 703 | 703 | && isset($this->imports['__NAMESPACE__']) | 
| 704 | - && $this->classExists($this->imports['__NAMESPACE__'] . '\\' . $name) | |
| 704 | + && $this->classExists($this->imports['__NAMESPACE__'].'\\'.$name) | |
| 705 | 705 |              ) { | 
| 706 | 706 | $name = $this->imports['__NAMESPACE__'].'\\'.$name; | 
| 707 | 707 | $found = true; | 
| 708 | -            } elseif (! isset($this->ignoredAnnotationNames[$name]) && $this->classExists($name)) { | |
| 708 | +            } elseif (!isset($this->ignoredAnnotationNames[$name]) && $this->classExists($name)) { | |
| 709 | 709 | $found = true; | 
| 710 | 710 | } | 
| 711 | 711 | |
| 712 | -            if ( ! $found) { | |
| 712 | +            if (!$found) { | |
| 713 | 713 |                  if ($this->isIgnoredAnnotation($name)) { | 
| 714 | 714 | return false; | 
| 715 | 715 | } | 
| @@ -718,9 +718,9 @@ discard block | ||
| 718 | 718 | } | 
| 719 | 719 | } | 
| 720 | 720 | |
| 721 | - $name = ltrim($name,'\\'); | |
| 721 | + $name = ltrim($name, '\\'); | |
| 722 | 722 | |
| 723 | -        if ( ! $this->classExists($name)) { | |
| 723 | +        if (!$this->classExists($name)) { | |
| 724 | 724 |              throw AnnotationException::semanticalError(sprintf('The annotation "@%s" in %s does not exist, or could not be auto-loaded.', $name, $this->context)); | 
| 725 | 725 | } | 
| 726 | 726 | |
| @@ -730,7 +730,7 @@ discard block | ||
| 730 | 730 | |
| 731 | 731 | |
| 732 | 732 | // collects the metadata annotation only if there is not yet | 
| 733 | -        if ( ! isset(self::$annotationMetadata[$name])) { | |
| 733 | +        if (!isset(self::$annotationMetadata[$name])) { | |
| 734 | 734 | $this->collectAnnotationMetadata($name); | 
| 735 | 735 | } | 
| 736 | 736 | |
| @@ -763,7 +763,7 @@ discard block | ||
| 763 | 763 | // checks all declared attributes | 
| 764 | 764 |              foreach (self::$annotationMetadata[$name]['enum'] as $property => $enum) { | 
| 765 | 765 | // checks if the attribute is a valid enumerator | 
| 766 | -                if (isset($values[$property]) && ! in_array($values[$property], $enum['value'])) { | |
| 766 | +                if (isset($values[$property]) && !in_array($values[$property], $enum['value'])) { | |
| 767 | 767 | throw AnnotationException::enumeratorError($property, $name, $this->context, $enum['literal'], $values[$property]); | 
| 768 | 768 | } | 
| 769 | 769 | } | 
| @@ -787,7 +787,7 @@ discard block | ||
| 787 | 787 | |
| 788 | 788 |              if ($type['type'] === 'array') { | 
| 789 | 789 | // handle the case of a single value | 
| 790 | -                if ( ! is_array($values[$property])) { | |
| 790 | +                if (!is_array($values[$property])) { | |
| 791 | 791 | $values[$property] = [$values[$property]]; | 
| 792 | 792 | } | 
| 793 | 793 | |
| @@ -819,7 +819,7 @@ discard block | ||
| 819 | 819 | } | 
| 820 | 820 | |
| 821 | 821 | // handle the case if the property has no annotations | 
| 822 | -                if ( ! $property = self::$annotationMetadata[$name]['default_property']) { | |
| 822 | +                if (!$property = self::$annotationMetadata[$name]['default_property']) { | |
| 823 | 823 |                      throw AnnotationException::creationError(sprintf('The annotation @%s declared on %s does not accept any values, but got %s.', $originalName, $this->context, json_encode($values))); | 
| 824 | 824 | } | 
| 825 | 825 | } | 
| @@ -839,13 +839,13 @@ discard block | ||
| 839 | 839 |      { | 
| 840 | 840 | $values = []; | 
| 841 | 841 | |
| 842 | -        if ( ! $this->lexer->isNextToken(DocLexer::T_OPEN_PARENTHESIS)) { | |
| 842 | +        if (!$this->lexer->isNextToken(DocLexer::T_OPEN_PARENTHESIS)) { | |
| 843 | 843 | return $values; | 
| 844 | 844 | } | 
| 845 | 845 | |
| 846 | 846 | $this->match(DocLexer::T_OPEN_PARENTHESIS); | 
| 847 | 847 | |
| 848 | -        if ( ! $this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) { | |
| 848 | +        if (!$this->lexer->isNextToken(DocLexer::T_CLOSE_PARENTHESIS)) { | |
| 849 | 849 | $values = $this->Values(); | 
| 850 | 850 | } | 
| 851 | 851 | |
| @@ -873,7 +873,7 @@ discard block | ||
| 873 | 873 | $token = $this->lexer->lookahead; | 
| 874 | 874 | $value = $this->Value(); | 
| 875 | 875 | |
| 876 | -            if ( ! is_object($value) && ! is_array($value)) { | |
| 876 | +            if (!is_object($value) && !is_array($value)) { | |
| 877 | 877 |                  $this->syntaxError('Value', $token); | 
| 878 | 878 | } | 
| 879 | 879 | |
| @@ -883,10 +883,10 @@ discard block | ||
| 883 | 883 |          foreach ($values as $k => $value) { | 
| 884 | 884 |              if (is_object($value) && $value instanceof \stdClass) { | 
| 885 | 885 | $values[$value->name] = $value->value; | 
| 886 | -            } else if ( ! isset($values['value'])){ | |
| 886 | +            } else if (!isset($values['value'])) { | |
| 887 | 887 | $values['value'] = $value; | 
| 888 | 888 |              } else { | 
| 889 | -                if ( ! is_array($values['value'])) { | |
| 889 | +                if (!is_array($values['value'])) { | |
| 890 | 890 | $values['value'] = [$values['value']]; | 
| 891 | 891 | } | 
| 892 | 892 | |
| @@ -910,7 +910,7 @@ discard block | ||
| 910 | 910 |      { | 
| 911 | 911 | $identifier = $this->Identifier(); | 
| 912 | 912 | |
| 913 | -        if ( ! defined($identifier) && false !== strpos($identifier, '::') && '\\' !== $identifier[0]) { | |
| 913 | +        if (!defined($identifier) && false !== strpos($identifier, '::') && '\\' !== $identifier[0]) { | |
| 914 | 914 |              list($className, $const) = explode('::', $identifier); | 
| 915 | 915 | |
| 916 | 916 | $pos = strpos($className, '\\'); | 
| @@ -932,12 +932,12 @@ discard block | ||
| 932 | 932 | case isset($this->imports[$loweredAlias]): | 
| 933 | 933 | $found = true; | 
| 934 | 934 | $className = (false !== $pos) | 
| 935 | - ? $this->imports[$loweredAlias] . substr($className, $pos) | |
| 935 | + ? $this->imports[$loweredAlias].substr($className, $pos) | |
| 936 | 936 | : $this->imports[$loweredAlias]; | 
| 937 | 937 | break; | 
| 938 | 938 | |
| 939 | 939 | default: | 
| 940 | -                    if(isset($this->imports['__NAMESPACE__'])) { | |
| 940 | +                    if (isset($this->imports['__NAMESPACE__'])) { | |
| 941 | 941 | $ns = $this->imports['__NAMESPACE__']; | 
| 942 | 942 | |
| 943 | 943 |                          if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) { | 
| @@ -949,14 +949,14 @@ discard block | ||
| 949 | 949 | } | 
| 950 | 950 | |
| 951 | 951 |              if ($found) { | 
| 952 | - $identifier = $className . '::' . $const; | |
| 952 | + $identifier = $className.'::'.$const; | |
| 953 | 953 | } | 
| 954 | 954 | } | 
| 955 | 955 | |
| 956 | 956 | /** | 
| 957 | 957 | * Checks if identifier ends with ::class and remove the leading backslash if it exists. | 
| 958 | 958 | */ | 
| 959 | -        if ($this->identifierEndsWithClassConstant($identifier) && ! $this->identifierStartsWithBackslash($identifier)) { | |
| 959 | +        if ($this->identifierEndsWithClassConstant($identifier) && !$this->identifierStartsWithBackslash($identifier)) { | |
| 960 | 960 | return substr($identifier, 0, $this->getClassConstantPositionInIdentifier($identifier)); | 
| 961 | 961 | } | 
| 962 | 962 |          if ($this->identifierEndsWithClassConstant($identifier) && $this->identifierStartsWithBackslash($identifier)) { | 
| @@ -996,7 +996,7 @@ discard block | ||
| 996 | 996 | private function Identifier() | 
| 997 | 997 |      { | 
| 998 | 998 | // check if we have an annotation | 
| 999 | -        if ( ! $this->lexer->isNextTokenAny(self::$classIdentifiers)) { | |
| 999 | +        if (!$this->lexer->isNextTokenAny(self::$classIdentifiers)) { | |
| 1000 | 1000 |              $this->syntaxError('namespace separator or identifier'); | 
| 1001 | 1001 | } | 
| 1002 | 1002 | |
| @@ -1012,7 +1012,7 @@ discard block | ||
| 1012 | 1012 | $this->match(DocLexer::T_NAMESPACE_SEPARATOR); | 
| 1013 | 1013 | $this->matchAny(self::$classIdentifiers); | 
| 1014 | 1014 | |
| 1015 | - $className .= '\\' . $this->lexer->token['value']; | |
| 1015 | + $className .= '\\'.$this->lexer->token['value']; | |
| 1016 | 1016 | } | 
| 1017 | 1017 | |
| 1018 | 1018 | return $className; | 
| @@ -1060,11 +1060,11 @@ discard block | ||
| 1060 | 1060 | |
| 1061 | 1061 | case DocLexer::T_INTEGER: | 
| 1062 | 1062 | $this->match(DocLexer::T_INTEGER); | 
| 1063 | - return (int)$this->lexer->token['value']; | |
| 1063 | + return (int) $this->lexer->token['value']; | |
| 1064 | 1064 | |
| 1065 | 1065 | case DocLexer::T_FLOAT: | 
| 1066 | 1066 | $this->match(DocLexer::T_FLOAT); | 
| 1067 | - return (float)$this->lexer->token['value']; | |
| 1067 | + return (float) $this->lexer->token['value']; | |
| 1068 | 1068 | |
| 1069 | 1069 | case DocLexer::T_TRUE: | 
| 1070 | 1070 | $this->match(DocLexer::T_TRUE); | 
| @@ -1192,9 +1192,9 @@ discard block | ||
| 1192 | 1192 | } | 
| 1193 | 1193 | |
| 1194 | 1194 |          foreach (array_keys($this->ignoredAnnotationNamespaces) as $ignoredAnnotationNamespace) { | 
| 1195 | - $ignoredAnnotationNamespace = rtrim($ignoredAnnotationNamespace, '\\') . '\\'; | |
| 1195 | + $ignoredAnnotationNamespace = rtrim($ignoredAnnotationNamespace, '\\').'\\'; | |
| 1196 | 1196 | |
| 1197 | -            if (0 === stripos(rtrim($name, '\\') . '\\', $ignoredAnnotationNamespace)) { | |
| 1197 | +            if (0 === stripos(rtrim($name, '\\').'\\', $ignoredAnnotationNamespace)) { | |
| 1198 | 1198 | return true; | 
| 1199 | 1199 | } | 
| 1200 | 1200 | } | 
| @@ -141,7 +141,7 @@ discard block | ||
| 141 | 141 | $this->parser->setIgnoredAnnotationNames($this->getIgnoredAnnotationNames($class)); | 
| 142 | 142 | $this->parser->setIgnoredAnnotationNamespaces(self::$globalIgnoredNamespaces); | 
| 143 | 143 | |
| 144 | - return $this->parser->parse($class->getDocComment(), 'class ' . $class->getName()); | |
| 144 | + return $this->parser->parse($class->getDocComment(), 'class '.$class->getName()); | |
| 145 | 145 | } | 
| 146 | 146 | |
| 147 | 147 | /** | 
| @@ -166,7 +166,7 @@ discard block | ||
| 166 | 166 | public function getPropertyAnnotations(ReflectionProperty $property) | 
| 167 | 167 |      { | 
| 168 | 168 | $class = $property->getDeclaringClass(); | 
| 169 | - $context = 'property ' . $class->getName() . "::\$" . $property->getName(); | |
| 169 | + $context = 'property '.$class->getName()."::\$".$property->getName(); | |
| 170 | 170 | |
| 171 | 171 | $this->parser->setTarget(Target::TARGET_PROPERTY); | 
| 172 | 172 | $this->parser->setImports($this->getPropertyImports($property)); | 
| @@ -198,7 +198,7 @@ discard block | ||
| 198 | 198 | public function getMethodAnnotations(ReflectionMethod $method) | 
| 199 | 199 |      { | 
| 200 | 200 | $class = $method->getDeclaringClass(); | 
| 201 | - $context = 'method ' . $class->getName() . '::' . $method->getName() . '()'; | |
| 201 | + $context = 'method '.$class->getName().'::'.$method->getName().'()'; | |
| 202 | 202 | |
| 203 | 203 | $this->parser->setTarget(Target::TARGET_METHOD); | 
| 204 | 204 | $this->parser->setImports($this->getMethodImports($method)); | 
| @@ -318,7 +318,7 @@ discard block | ||
| 318 | 318 | private function collectParsingMetadata(ReflectionClass $class) | 
| 319 | 319 |      { | 
| 320 | 320 | $ignoredAnnotationNames = self::$globalIgnoredNames; | 
| 321 | - $annotations = $this->preParser->parse($class->getDocComment(), 'class ' . $class->name); | |
| 321 | + $annotations = $this->preParser->parse($class->getDocComment(), 'class '.$class->name); | |
| 322 | 322 | |
| 323 | 323 |          foreach ($annotations as $annotation) { | 
| 324 | 324 |              if ($annotation instanceof IgnoreAnnotation) { |