소스 검색

Minor CS fix.

Justin Hileman 8 년 전
부모
커밋
2540de2db2
1개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 7 7
      test/fixtures/examples/anchored_dot_notation/AnchoredDotNotation.php

+ 7 - 7
test/fixtures/examples/anchored_dot_notation/AnchoredDotNotation.php

@@ -13,20 +13,20 @@ class AnchoredDotNotation
 {
     public $genres = array(
         array(
-            'name' => 'Punk',
+            'name'      => 'Punk',
             'subgenres' => array(
                 array(
-                    'name' => 'Hardcore',
+                    'name'      => 'Hardcore',
                     'subgenres' => array(
                         array(
-                            'name' => 'First wave of black metal',
+                            'name'      => 'First wave of black metal',
                             'subgenres' => array(
                                 array('name' => 'Norwegian black metal'),
                                 array(
-                                    'name' => 'Death metal',
+                                    'name'      => 'Death metal',
                                     'subgenres' => array(
                                         array(
-                                            'name' => 'Swedish death metal',
+                                            'name'      => 'Swedish death metal',
                                             'subgenres' => array(
                                                 array('name' => 'New wave of American metal'),
                                             ),
@@ -36,11 +36,11 @@ class AnchoredDotNotation
                             ),
                         ),
                         array(
-                            'name' => 'Thrash metal',
+                            'name'      => 'Thrash metal',
                             'subgenres' => array(
                                 array('name' => 'Grindcore'),
                                 array(
-                                    'name' => 'Metalcore',
+                                    'name'      => 'Metalcore',
                                     'subgenres' => array(
                                         array('name' => 'Nu metal'),
                                     ),