Passed
Push — master ( d08a7c...22b5b0 )
by Mario
02:07
created
tests/ResourceControllerTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
         $this->json('GET', '/test')
24 24
             ->assertStatus(200);
25
-             //->assertJsonCount(3, 'data');
25
+                //->assertJsonCount(3, 'data');
26 26
     }
27 27
 
28 28
     /**
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
         $this->json('GET', '/test2')
43 43
             ->assertStatus(200);
44
-             //->assertJsonCount(3, 'data');
44
+                //->assertJsonCount(3, 'data');
45 45
     }
46 46
 
47 47
     /**
Please login to merge, or discard this patch.
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/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.