瀏覽代碼

Applied fixes from StyleCI

Marcel Pociot 9 年之前
父節點
當前提交
477dfcf2c0
共有 1 個文件被更改,包括 4 次插入4 次删除
  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,
         ];
     }