Browse Source

Applied fixes from StyleCI

Marcel Pociot 9 years ago
parent
commit
477dfcf2c0
1 changed files with 4 additions and 4 deletions
  1. 4 4
      tests/Fixtures/TestController.php

+ 4 - 4
tests/Fixtures/TestController.php

@@ -36,10 +36,10 @@ class TestController extends Controller
         $fixture->delicious = 1;
 
         return [
-            'id'        => (int) $fixture->id,
-            'name'      => ucfirst($fixture->name),
-            'color'     => ucfirst($fixture->color),
-            'weight'    => $fixture->weight . ' grams',
+            'id' => (int) $fixture->id,
+            'name' => ucfirst($fixture->name),
+            'color' => ucfirst($fixture->color),
+            'weight' => $fixture->weight.' grams',
             'delicious' => (bool) $fixture->delicious,
         ];
     }