Passed
Push — master ( d08a7c...22b5b0 )
by Mario
02:07
created
tests/BaseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             [
22 22
             'middleware' => [],
23 23
             'namespace'  => 'RafflesArgentina\ResourceController',
24
-            ], function ($router) {
24
+            ], function($router) {
25 25
                 $router->resource('test', 'TestController');
26 26
                 $router->resource('test2', 'TestUseSoftDeletesController');
27 27
                 $router->resource('test3', 'ApiTestController');
Please login to merge, or discard this patch.
tests/ApiResourceControllerTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
         $this->json('GET', '/test3')
19 19
             ->assertStatus(200);
20
-             //->assertJsonCount(3, 'data');
20
+                //->assertJsonCount(3, 'data');
21 21
     }
22 22
 
23 23
     /**
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
         $this->json('GET', '/test4')
34 34
             ->assertStatus(200);
35
-             //->assertJsonCount(3, 'data');
35
+                //->assertJsonCount(3, 'data');
36 36
     }
37 37
 
38 38
     /**
Please login to merge, or discard this patch.