Completed
Push — master ( 3d31fc...233e36 )
by Andreas
03:17
created
lib/Doctrine/Common/Annotations/DocParser.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
                     'array_type'=>'string',
153 153
                     'value'     =>'array<string>'
154 154
                 ]
155
-             ],
155
+                ],
156 156
         ],
157 157
         'Doctrine\Common\Annotations\Annotation\Attribute' => [
158 158
             'is_annotation'    => true,
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                     'type'      =>'boolean',
182 182
                     'value'     =>'boolean'
183 183
                 ]
184
-             ],
184
+                ],
185 185
         ],
186 186
         'Doctrine\Common\Annotations\Annotation\Attributes' => [
187 187
             'is_annotation'    => true,
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                     'array_type'=>'Doctrine\Common\Annotations\Annotation\Attribute',
200 200
                     'value'     =>'array<Doctrine\Common\Annotations\Annotation\Attribute>'
201 201
                 ]
202
-             ],
202
+                ],
203 203
         ],
204 204
         'Doctrine\Common\Annotations\Annotation\Enum' => [
205 205
             'is_annotation'    => true,
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
                     'type'      => 'array',
220 220
                     'required'  => false,
221 221
                 ],
222
-             ],
222
+                ],
223 223
         ],
224 224
     ];
225 225
 
@@ -761,7 +761,7 @@  discard block
 block discarded – undo
761 761
         if (0 === (self::$annotationMetadata[$name]['targets'] & $target) && $target) {
762 762
             throw AnnotationException::semanticalError(
763 763
                 sprintf('Annotation @%s is not allowed to be declared on %s. You may only use this annotation on these code elements: %s.',
764
-                     $originalName, $this->context, self::$annotationMetadata[$name]['targets_literal'])
764
+                        $originalName, $this->context, self::$annotationMetadata[$name]['targets_literal'])
765 765
             );
766 766
         }
767 767
 
@@ -930,9 +930,9 @@  discard block
 block discarded – undo
930 930
                 case !empty ($this->namespaces):
931 931
                     foreach ($this->namespaces as $ns) {
932 932
                         if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) {
933
-                             $className = $ns.'\\'.$className;
934
-                             $found = true;
935
-                             break;
933
+                                $className = $ns.'\\'.$className;
934
+                                $found = true;
935
+                                break;
936 936
                         }
937 937
                     }
938 938
                     break;
@@ -957,7 +957,7 @@  discard block
 block discarded – undo
957 957
             }
958 958
 
959 959
             if ($found) {
960
-                 $identifier = $className . '::' . $const;
960
+                    $identifier = $className . '::' . $const;
961 961
             }
962 962
         }
963 963
 
Please login to merge, or discard this patch.