Completed
Push — master ( db2a72...0e04a6 )
by Brandon
01:49
created
app/Notifications/InvoicePaid.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      * Get the notification's delivery channels.
26 26
      *
27 27
      * @param  mixed  $notifiable
28
-     * @return array
28
+     * @return string[]
29 29
      */
30 30
     public function via($notifiable)
31 31
     {
Please login to merge, or discard this patch.
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/Http/Controllers/HomeController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function about()
35 35
     {
36
-    	return view('home.about');
36
+        return view('home.about');
37 37
     }
38 38
 
39 39
     /**
@@ -43,6 +43,6 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function help()
45 45
     {
46
-    	return view('home.help');
46
+        return view('home.help');
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
app/Http/Controllers/UserController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * Store a new user.
61 61
      *
62 62
      * @param  Request  $request
63
-     * @return Response
63
+     * @return \Illuminate\Http\RedirectResponse
64 64
      */
65 65
     public function store(Request $request)
66 66
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      *
85 85
      * @param  Request  $request
86 86
      * @param  string  $id
87
-     * @return Response
87
+     * @return \Illuminate\Http\RedirectResponse
88 88
      */
89 89
     public function update(Request $request, $id)
90 90
     {
Please login to merge, or discard this patch.
app/Policies/UserPolicy.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      *
29 29
      * @param  \App\User  $user
30 30
      * @param  \App\User  $user
31
-     * @return mixed
31
+     * @return boolean
32 32
      */
33 33
     public function view(User $user, User $user)
34 34
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * Determine whether the user can create users.
41 41
      *
42 42
      * @param  \App\User  $user
43
-     * @return mixed
43
+     * @return boolean
44 44
      */
45 45
     public function create(User $user)
46 46
     {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      *
54 54
      * @param  \App\User  $user
55 55
      * @param  \App\User  $user
56
-     * @return mixed
56
+     * @return boolean
57 57
      */
58 58
     public function update(User $user, User $user)
59 59
     {
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *
68 68
      * @param  \App\User  $user
69 69
      * @param  \App\User  $user
70
-     * @return mixed
70
+     * @return boolean
71 71
      */
72 72
     public function delete(User $user, User $user)
73 73
     {
Please login to merge, or discard this patch.