@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | /** |
163 | 163 | * Set the form response. |
164 | 164 | * |
165 | - * @param null|false|Response $response |
|
165 | + * @param Response $response |
|
166 | 166 | * @return $this |
167 | 167 | */ |
168 | 168 | public function setResponse(Response $response) |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | /** |
311 | 311 | * Get the form content. |
312 | 312 | * |
313 | - * @return null|View |
|
313 | + * @return null|string |
|
314 | 314 | */ |
315 | 315 | public function getContent() |
316 | 316 | { |
@@ -430,7 +430,7 @@ discard block |
||
430 | 430 | * Get an option value. |
431 | 431 | * |
432 | 432 | * @param $key |
433 | - * @param null $default |
|
433 | + * @param string|null $default |
|
434 | 434 | * @return mixed |
435 | 435 | */ |
436 | 436 | public function getOption($key, $default = null) |
@@ -553,7 +553,7 @@ discard block |
||
553 | 553 | * Get a form field. |
554 | 554 | * |
555 | 555 | * @param $fieldSlug |
556 | - * @return FieldType|mixed |
|
556 | + * @return FieldType |
|
557 | 557 | */ |
558 | 558 | public function getField($fieldSlug) |
559 | 559 | { |
@@ -563,7 +563,7 @@ discard block |
||
563 | 563 | /** |
564 | 564 | * Add data to the view data collection. |
565 | 565 | * |
566 | - * @param $key |
|
566 | + * @param string $key |
|
567 | 567 | * @param $value |
568 | 568 | * @return $this |
569 | 569 | */ |
@@ -24,7 +24,6 @@ |
||
24 | 24 | /** |
25 | 25 | * Create a new FormAuthorizer instance. |
26 | 26 | * |
27 | - * @param ModuleCollection $modules |
|
28 | 27 | * @param Authorizer $authorizer |
29 | 28 | */ |
30 | 29 | public function __construct(Authorizer $authorizer) |
@@ -33,7 +33,6 @@ discard block |
||
33 | 33 | /** |
34 | 34 | * Make the form. |
35 | 35 | * |
36 | - * @param null $builder |
|
37 | 36 | * @param array $parameters |
38 | 37 | * @return FormCriteria |
39 | 38 | */ |
@@ -60,7 +59,7 @@ discard block |
||
60 | 59 | |
61 | 60 | /** |
62 | 61 | * @param array $parameters |
63 | - * @return array |
|
62 | + * @return string |
|
64 | 63 | */ |
65 | 64 | protected function resolve(array $parameters) |
66 | 65 | { |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | /** |
47 | 47 | * Set the type. |
48 | 48 | * |
49 | - * @param $type |
|
49 | + * @param string $type |
|
50 | 50 | * @return $this |
51 | 51 | */ |
52 | 52 | public function setType($type) |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | /** |
70 | 70 | * Set the class. |
71 | 71 | * |
72 | - * @param $class |
|
72 | + * @param string $class |
|
73 | 73 | * @return $this |
74 | 74 | */ |
75 | 75 | public function setClass($class) |
@@ -53,7 +53,6 @@ |
||
53 | 53 | /** |
54 | 54 | * Set the table model object from the builder's model. |
55 | 55 | * |
56 | - * @param SetDefaultParameters $command |
|
57 | 56 | */ |
58 | 57 | public function handle() |
59 | 58 | { |
@@ -34,7 +34,6 @@ |
||
34 | 34 | /** |
35 | 35 | * Set the active action. |
36 | 36 | * |
37 | - * @param SetActiveAction $command |
|
38 | 37 | */ |
39 | 38 | public function handle() |
40 | 39 | { |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * Get the current direction |
97 | 97 | * defaulting to ascending. |
98 | 98 | * |
99 | - * @param null $default |
|
99 | + * @param string $default |
|
100 | 100 | * @return string|null |
101 | 101 | */ |
102 | 102 | public function getDirection($default = null) |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | /** |
139 | 139 | * Get the header heading. |
140 | 140 | * |
141 | - * @return mixed |
|
141 | + * @return string |
|
142 | 142 | */ |
143 | 143 | public function getHeading() |
144 | 144 | { |
@@ -38,7 +38,6 @@ |
||
38 | 38 | * Handle the command. |
39 | 39 | * |
40 | 40 | * @param Request $request |
41 | - * @param Container $container |
|
42 | 41 | */ |
43 | 42 | public function handle(Request $request, ViewHandler $handler) |
44 | 43 | { |
@@ -60,7 +60,7 @@ |
||
60 | 60 | * |
61 | 61 | * @param TreeBuilder $builder |
62 | 62 | * @param $entry |
63 | - * @return View|mixed|null |
|
63 | + * @return string |
|
64 | 64 | */ |
65 | 65 | public function make(TreeBuilder $builder, $entry) |
66 | 66 | { |