Completed
Push — master ( 0bb7a1...22753b )
by Eric
04:58
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     protected function mapWebRoutes()
53 53
     {
54 54
         Route::middleware('web')
55
-             ->namespace($this->namespace)
56
-             ->group(base_path('routes/web.php'));
55
+                ->namespace($this->namespace)
56
+                ->group(base_path('routes/web.php'));
57 57
     }
58 58
 
59 59
     /**
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
     protected function mapApiRoutes()
67 67
     {
68 68
         Route::prefix('api')
69
-             ->middleware('api')
70
-             ->namespace($this->namespace)
71
-             ->group(base_path('routes/api.php'));
69
+                ->middleware('api')
70
+                ->namespace($this->namespace)
71
+                ->group(base_path('routes/api.php'));
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
app/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 use Spatie\Permission\Models\Permission;
4 4
 use Spatie\Permission\Models\Role;
5 5
 
6
-if (!function_exists('initialize_task_permission')) {
6
+if ( ! function_exists('initialize_task_permission')) {
7 7
     function initialize_task_permissions()
8 8
     {
9 9
         Permission::firstOrCreate(['name' => 'list-tasks']);
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     }
23 23
 }
24 24
 
25
-if (!function_exists('create_user')) {
25
+if ( ! function_exists('create_user')) {
26 26
     function create_user()
27 27
     {
28 28
         factory(User::class)->create([
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 }
35 35
 
36
-if (!function_exists('first_user_as_task_manager')) {
36
+if ( ! function_exists('first_user_as_task_manager')) {
37 37
     function first_user_as_task_manager()
38 38
     {
39 39
         User::all()->first()->assignRole('task-manager');
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         if ($this->username() === 'email') {
73 73
             return $this->attemptLoginAtAuthenticatesUsers($request);
74 74
         }
75
-        if (!$this->attemptLoginAtAuthenticatesUsers($request)) {
75
+        if ( ! $this->attemptLoginAtAuthenticatesUsers($request)) {
76 76
             return $this->attempLoginUsingUsernameAsAnEmail($request);
77 77
         }
78 78
 
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ResetPasswordController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         // will update the password on an actual user model and persist it to the
39 39
         // database. Otherwise we will parse the error and return the response.
40 40
         $response = $this->broker()->reset(
41
-            $this->credentials($request), function ($user, $password) {
41
+            $this->credentials($request), function($user, $password) {
42 42
                 $this->resetPassword($user, $password);
43 43
             }
44 44
         );
Please login to merge, or discard this patch.
app/Console/Commands/ShowTaskCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,10 +46,10 @@
 block discarded – undo
46 46
             $headers = ['Key', 'Value'];
47 47
 
48 48
             $fields = [
49
-              ['Name:', $task->name],
49
+                ['Name:', $task->name],
50 50
                 ['Completed:', $task->completed ? 'Yes' : 'No'],
51
-              ['User id:', $task->user_id],
52
-              ['User name:', $user->name],
51
+                ['User id:', $task->user_id],
52
+                ['User name:', $user->name],
53 53
             ];
54 54
 
55 55
             $this->table($headers, $fields);
Please login to merge, or discard this patch.
app/Http/Controllers/TasksTimelineControler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
     public function index()
12 12
     {
13 13
         $task_events = TaskEvent::all();
14
-        return view('timeline',['task_events' => $task_events]);
14
+        return view('timeline', ['task_events' => $task_events]);
15 15
     }
16 16
 }
Please login to merge, or discard this patch.
app/Providers/AppServiceProvider.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -20,12 +20,12 @@
 block discarded – undo
20 20
     public function boot()
21 21
     {
22 22
         View::composer('*', function ($view) {
23
-           if (Auth::user()){
24
-               $view->with('user',Auth::user());
25
-           } else {
26
-               // NullObject
27
-               $view->with('user', new GuestUser());
28
-           }
23
+            if (Auth::user()){
24
+                $view->with('user',Auth::user());
25
+            } else {
26
+                // NullObject
27
+                $view->with('user', new GuestUser());
28
+            }
29 29
         });
30 30
 
31 31
         Task::observe(TaskObserver::class);
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
      */
20 20
     public function boot()
21 21
     {
22
-        View::composer('*', function ($view) {
23
-           if (Auth::user()){
24
-               $view->with('user',Auth::user());
22
+        View::composer('*', function($view) {
23
+           if (Auth::user()) {
24
+               $view->with('user', Auth::user());
25 25
            } else {
26 26
                // NullObject
27 27
                $view->with('user', new GuestUser());
Please login to merge, or discard this patch.
app/Console/Kernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
         // $schedule->command('inspire')
35 35
         //          ->hourly();
36 36
 
37
-        if (substr( Carbon::now(), 0, 10 ) === $this->date){
38
-            $schedule->call(function () {
37
+        if (substr(Carbon::now(), 0, 10) === $this->date) {
38
+            $schedule->call(function() {
39 39
                 Mail::to(User::find(1))->send(new HelloUser());
40 40
             })->dailyAt('00:00');
41 41
         }
Please login to merge, or discard this patch.