@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | 'array_type'=>'string', |
136 | 136 | 'value' =>'array<string>' |
137 | 137 | ] |
138 | - ], |
|
138 | + ], |
|
139 | 139 | ], |
140 | 140 | 'Doctrine\Annotations\Annotation\Attribute' => [ |
141 | 141 | 'is_annotation' => true, |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | 'type' =>'boolean', |
165 | 165 | 'value' =>'boolean' |
166 | 166 | ] |
167 | - ], |
|
167 | + ], |
|
168 | 168 | ], |
169 | 169 | 'Doctrine\Annotations\Annotation\Attributes' => [ |
170 | 170 | 'is_annotation' => true, |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | 'array_type'=>'Doctrine\Annotations\Annotation\Attribute', |
183 | 183 | 'value' =>'array<Doctrine\Annotations\Annotation\Attribute>' |
184 | 184 | ] |
185 | - ], |
|
185 | + ], |
|
186 | 186 | ], |
187 | 187 | 'Doctrine\Annotations\Annotation\Enum' => [ |
188 | 188 | 'is_annotation' => true, |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | 'type' => 'array', |
203 | 203 | 'required' => false, |
204 | 204 | ], |
205 | - ], |
|
205 | + ], |
|
206 | 206 | ], |
207 | 207 | ]; |
208 | 208 | |
@@ -733,7 +733,7 @@ discard block |
||
733 | 733 | if (0 === (self::$annotationMetadata[$name]['targets'] & $target) && $target) { |
734 | 734 | throw AnnotationException::semanticalError( |
735 | 735 | sprintf('Annotation @%s is not allowed to be declared on %s. You may only use this annotation on these code elements: %s.', |
736 | - $originalName, $this->context, self::$annotationMetadata[$name]['targets_literal']) |
|
736 | + $originalName, $this->context, self::$annotationMetadata[$name]['targets_literal']) |
|
737 | 737 | ); |
738 | 738 | } |
739 | 739 | |
@@ -902,9 +902,9 @@ discard block |
||
902 | 902 | case !empty ($this->namespaces): |
903 | 903 | foreach ($this->namespaces as $ns) { |
904 | 904 | if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) { |
905 | - $className = $ns.'\\'.$className; |
|
906 | - $found = true; |
|
907 | - break; |
|
905 | + $className = $ns.'\\'.$className; |
|
906 | + $found = true; |
|
907 | + break; |
|
908 | 908 | } |
909 | 909 | } |
910 | 910 | break; |
@@ -929,7 +929,7 @@ discard block |
||
929 | 929 | } |
930 | 930 | |
931 | 931 | if ($found) { |
932 | - $identifier = $className . '::' . $const; |
|
932 | + $identifier = $className . '::' . $const; |
|
933 | 933 | } |
934 | 934 | } |
935 | 935 |