Completed
Branch master (574b64)
by Fèvre
11:47
created
app/Exceptions/Handler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      *
85 85
      * @param \Exception $e The exception to convert.
86 86
      *
87
-     * @return mixed
87
+     * @return \Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response
88 88
      */
89 89
     protected function convertExceptionToResponse(Exception $e)
90 90
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      *
62 62
      * @param \Illuminate\Http\Request $request The request object.
63 63
      *
64
-     * @return \Illuminate\Http\Response
64
+     * @return \Illuminate\Http\RedirectResponse
65 65
      */
66 66
     public function logout(Request $request)
67 67
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      *
50 50
      * @param  \Illuminate\Http\Request $request
51 51
      *
52
-     * @return \Illuminate\Http\Response
52
+     * @return \Illuminate\Http\RedirectResponse
53 53
      */
54 54
     public function register(Request $request)
55 55
     {
Please login to merge, or discard this patch.
app/Http/ViewComposers/SidebarServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function boot()
17 17
     {
18
-        View::composer('Blog::article._sidebar', function ($view) {
18
+        View::composer('Blog::article._sidebar', function($view) {
19 19
             $articles = ArticleRepository::sidebar();
20 20
             $categories = CategoryRepository::sidebar();
21 21
 
Please login to merge, or discard this patch.
app/Providers/BroadcastServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         /*
19 19
          * Authenticate the user's personal channel...
20 20
          */
21
-        Broadcast::channel('Xetaravel.User.*', function ($user, $userId) {
21
+        Broadcast::channel('Xetaravel.User.*', function($user, $userId) {
22 22
             return (int) $user->id === (int) $userId;
23 23
         });
24 24
     }
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
         Route::group([
52 52
             'middleware' => 'web',
53 53
             'namespace' => $this->namespace,
54
-        ], function ($router) {
54
+        ], function($router) {
55 55
             require base_path('routes/web.php');
56 56
         });
57 57
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             'middleware' => 'api',
70 70
             'namespace' => $this->namespace,
71 71
             'prefix' => 'api',
72
-        ], function ($router) {
72
+        ], function($router) {
73 73
             require base_path('routes/api.php');
74 74
         });
75 75
     }
Please login to merge, or discard this patch.