From 2540de2db2439621ee3a5f1cc6e47d8eca0941ce Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Mon, 3 Jul 2017 00:25:56 -0700 Subject: [PATCH] Minor CS fix. --- .../anchored_dot_notation/AnchoredDotNotation.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/fixtures/examples/anchored_dot_notation/AnchoredDotNotation.php b/test/fixtures/examples/anchored_dot_notation/AnchoredDotNotation.php index ee76059..c075f65 100644 --- a/test/fixtures/examples/anchored_dot_notation/AnchoredDotNotation.php +++ b/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'), ),