Completed
Push — master ( a669fb...465a84 )
by Mario
05:01
created
src/AbstractResourceController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 use RafflesArgentina\ResourceController\Exceptions\ResourceControllerException;
14 14
 
15 15
 abstract class AbstractResourceController extends BaseController
16
-                                          implements ResourceControllerInterface
16
+                                            implements ResourceControllerInterface
17 17
 {
18 18
     /**
19 19
      * The alias for named routes.
Please login to merge, or discard this patch.
src/ResourceController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         }
97 97
 
98 98
         return redirect()->route($this->getRedirectionRoute())
99
-                         ->with($this->successFlashMessageKey, $message);
99
+                            ->with($this->successFlashMessageKey, $message);
100 100
     }
101 101
 
102 102
     /**
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         }
201 201
 
202 202
         return redirect()->route($this->getRedirectionRoute())
203
-                         ->with($this->successFlashMessageKey, $message);
203
+                            ->with($this->successFlashMessageKey, $message);
204 204
     }
205 205
 
206 206
     /**
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         }
247 247
 
248 248
         return redirect()->route($this->getRedirectionRoute())
249
-                         ->with($this->infoFlashMessageKey, $message);
249
+                            ->with($this->infoFlashMessageKey, $message);
250 250
     }
251 251
 
252 252
     /**
Please login to merge, or discard this patch.
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.