Completed
Pull Request — master (#1782)
by
unknown
03:55 queued 01:08
created
src/Extension.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 
9 9
 abstract class Extension
10 10
 {
11
+    /**
12
+     * @param string $key
13
+     */
11 14
     public static function config($key, $default = null)
12 15
     {
13 16
         $name = array_search(get_called_class(), Admin::$extensions);
Please login to merge, or discard this patch.
src/Controllers/AuthController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * User logout.
60 60
      *
61
-     * @return Redirect
61
+     * @return \Illuminate\Http\RedirectResponse
62 62
      */
63 63
     public function getLogout()
64 64
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * User setting page.
74 74
      *
75
-     * @return mixed
75
+     * @return Content
76 76
      */
77 77
     public function getSetting()
78 78
     {
Please login to merge, or discard this patch.
src/Form/Field/Select.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      *
39 39
      * @param array|callable|string $options
40 40
      *
41
-     * @return $this|mixed
41
+     * @return Select
42 42
      */
43 43
     public function options($options = [])
44 44
     {
Please login to merge, or discard this patch.
src/Form.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
      *
279 279
      * @param $id
280 280
      *
281
-     * @return mixed
281
+     * @return boolean
282 282
      */
283 283
     public function destroy($id)
284 284
     {
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
      *
320 320
      * @param null $inputData
321 321
      *
322
-     * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|\Illuminate\Http\JsonResponse
322
+     * @return Response
323 323
      */
324 324
     public function store($inputData = null)
325 325
     {
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
      *
399 399
      * @param array $data
400 400
      *
401
-     * @return mixed
401
+     * @return Response|null
402 402
      */
403 403
     protected function prepare($data = [])
404 404
     {
@@ -870,7 +870,7 @@  discard block
 block discarded – undo
870 870
     /**
871 871
      * Set saved callback.
872 872
      *
873
-     * @param callable $callback
873
+     * @param Closure $callback
874 874
      *
875 875
      * @return void
876 876
      */
Please login to merge, or discard this patch.