Completed
Push — master ( 6a5379...8e9116 )
by Yves
06:11
created
app/Console/Kernel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
     protected function schedule(Schedule $schedule)
26 26
     {
27 27
         $schedule->command('inspire')
28
-                 ->hourly();
28
+                    ->hourly();
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
app/Http/routes-api.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-Route::group(['middleware' => ['auth']], function () {
3
+Route::group(['middleware' => ['auth']], function() {
4 4
     Route::get('task/{id}/tag', 'TagController@index');
5 5
     Route::resource('task', 'TaskController');
6 6
     Route::resource('tag', 'TagController');
Please login to merge, or discard this patch.
app/Http/routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::get('/', function () {
14
+Route::get('/', function() {
15 15
     return view('welcome');
16 16
 });
17 17
 
18
-Route::get('/auth/login', function () {
18
+Route::get('/auth/login', function() {
19 19
     return 'No tens acces a la API';
20 20
 });
21 21
\ No newline at end of file
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $router->group([
53 53
             'namespace' => $this->namespace, 'middleware' => 'web',
54
-        ], function ($router) {
54
+        ], function($router) {
55 55
             require app_path('Http/routes.php');
56 56
         });
57 57
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $router->group([
70 70
             'namespace' => $this->namespace, 'middleware' => 'api',
71
-        ], function ($router) {
71
+        ], function($router) {
72 72
             require app_path('Http/routes-api.php');
73 73
         });
74 74
     }
Please login to merge, or discard this patch.
app/Acme/Transformers/TaskTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         return [
17 17
             'name' => $task['name'],
18 18
             'some_bool' => (boolean) $task['done'],
19
-            'priority' => (int)$task['priority'],
19
+            'priority' => (int) $task['priority'],
20 20
         ];
21 21
     }
22 22
 }
23 23
\ No newline at end of file
Please login to merge, or discard this patch.