Passed
Push — master ( 420f5e...d683e4 )
by Mario
03:38
created
src/AbstractResourceController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 use RafflesArgentina\ResourceController\Traits\FormatsValidJsonResponses;
16 16
 
17 17
 abstract class AbstractResourceController extends BaseController
18
-                                          implements ResourceControllerInterface
18
+                                            implements ResourceControllerInterface
19 19
 {
20 20
     use FormatsValidJsonResponses;
21 21
 
Please login to merge, or discard this patch.
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.