Completed
Push — master ( d7fd7b...93bb31 )
by wen
03:12 queued 48s
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.
src/Exceptions/Handler.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,6 +141,9 @@  discard block
 block discarded – undo
141 141
         }
142 142
     }
143 143
 
144
+    /**
145
+     * @param \Illuminate\Http\Request $request
146
+     */
144 147
     protected function isAdmin($request)
145 148
     {
146 149
         $route = $request->route();
@@ -151,7 +154,7 @@  discard block
 block discarded – undo
151 154
      * @param \Illuminate\Http\Request                $request
152 155
      * @param \Sco\Admin\Contracts\ExceptionInterface $exception
153 156
      *
154
-     * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response
157
+     * @return \Symfony\Component\HttpFoundation\Response|null
155 158
      */
156 159
     protected function renderAdminException(
157 160
         $request,
Please login to merge, or discard this patch.
src/View/Columns/Column.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -115,6 +115,9 @@
 block discarded – undo
115 115
         return $this->getValueFromObject($this->getModel(), $this->getName());
116 116
     }
117 117
 
118
+    /**
119
+     * @param Model $instance
120
+     */
118 121
     protected function getValueFromObject($instance, $name)
119 122
     {
120 123
         $parts = explode('.', $name);
Please login to merge, or discard this patch.
src/Component/Component.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@  discard block
 block discarded – undo
52 52
         return $this->getRepository()->isRestorable();
53 53
     }
54 54
 
55
+    /**
56
+     * @param string $class
57
+     */
55 58
     public function registerObserver($class = null)
56 59
     {
57 60
         if (!$class) {
@@ -72,6 +75,9 @@  discard block
 block discarded – undo
72 75
         $this->permissions[$permission] = $callback;
73 76
     }
74 77
 
78
+    /**
79
+     * @param string $permission
80
+     */
75 81
     public function can($permission)
76 82
     {
77 83
         if (is_callable($this->permissions[$permission])) {
Please login to merge, or discard this patch.
src/Form/Elements/Select.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     }
76 76
 
77 77
     /**
78
-     * @param Model|string $options
78
+     * @param string $options
79 79
      *
80 80
      * @return array
81 81
      */
Please login to merge, or discard this patch.
src/Form/Elements/File.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
      *
281 281
      * @param \Illuminate\Http\UploadedFile $file
282 282
      *
283
-     * @return mixed|string
283
+     * @return string
284 284
      */
285 285
     public function getUploadFileName(UploadedFile $file)
286 286
     {
@@ -355,6 +355,9 @@  discard block
 block discarded – undo
355 355
         ];
356 356
     }
357 357
 
358
+    /**
359
+     * @param string $rule
360
+     */
358 361
     public function addValidationRule($rule, $message = null)
359 362
     {
360 363
         $uploadRules = [
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
@@ -25,6 +25,10 @@
 block discarded – undo
25 25
 
26 26
     }
27 27
 
28
+    /**
29
+     * @param string $name
30
+     * @param string $displayName
31
+     */
28 32
     private function storePermission($name, $displayName, $description = '')
29 33
     {
30 34
         $permissionModelName = config('entrust.permission');
Please login to merge, or discard this patch.