Completed
Push — master ( 23bd67...786b39 )
by wen
14:38
created
src/Http/Controllers/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
      *
101 101
      * @param  Request $request
102 102
      *
103
-     * @return \Illuminate\Http\Response
103
+     * @return \Illuminate\Http\RedirectResponse
104 104
      */
105 105
     public function logout(Request $request)
106 106
     {
Please login to merge, or discard this patch.
src/Http/Controllers/System/MenuController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     /**
35 35
      * 菜单列表
36 36
      *
37
-     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
37
+     * @return \Illuminate\Http\JsonResponse
38 38
      */
39 39
     public function getList()
40 40
     {
Please login to merge, or discard this patch.
database/seeds/PermissionsTableSeeder.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -73,6 +73,10 @@
 block discarded – undo
73 73
             $role->id);
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $name
78
+     * @param string $displayName
79
+     */
76 80
     private function insertPerm(
77 81
         $name,
78 82
         $displayName,
Please login to merge, or discard this patch.
src/Exceptions/Handler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -123,6 +123,9 @@
 block discarded – undo
123 123
         }
124 124
     }
125 125
 
126
+    /**
127
+     * @param \Illuminate\Http\Request $request
128
+     */
126 129
     protected function isAdmin($request)
127 130
     {
128 131
         return $request->route() && strpos($request->route()->getPrefix(), 'admin') === 0;
Please login to merge, or discard this patch.