@@ -50,7 +50,6 @@ |
||
50 | 50 | /** |
51 | 51 | * Handle the command. |
52 | 52 | * |
53 | - * @param Translator $translator |
|
54 | 53 | * @return string |
55 | 54 | */ |
56 | 55 | public function handle() |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | /** |
143 | 143 | * Set the highlighted flag. |
144 | 144 | * |
145 | - * @param boolean $active |
|
145 | + * @param boolean $highlighted |
|
146 | 146 | * @return $this |
147 | 147 | */ |
148 | 148 | public function setHighlighted($highlighted); |
@@ -181,6 +181,7 @@ discard block |
||
181 | 181 | * Set the buttons. |
182 | 182 | * |
183 | 183 | * @param array|string $buttons |
184 | + * @return void |
|
184 | 185 | */ |
185 | 186 | public function setButtons($buttons); |
186 | 187 | |
@@ -195,6 +196,7 @@ discard block |
||
195 | 196 | * Set the attributes. |
196 | 197 | * |
197 | 198 | * @param array $attributes |
199 | + * @return void |
|
198 | 200 | */ |
199 | 201 | public function setAttributes(array $attributes); |
200 | 202 |
@@ -304,7 +304,6 @@ |
||
304 | 304 | /** |
305 | 305 | * Set the highlighted flag. |
306 | 306 | * |
307 | - * @param boolean $active |
|
308 | 307 | * @return $this |
309 | 308 | */ |
310 | 309 | public function setHighlighted($highlighted) |
@@ -32,7 +32,6 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * Make the form. |
34 | 34 | * |
35 | - * @param null $builder |
|
36 | 35 | * @param array $parameters |
37 | 36 | * @return FormCriteria |
38 | 37 | */ |
@@ -59,7 +58,7 @@ discard block |
||
59 | 58 | |
60 | 59 | /** |
61 | 60 | * @param array $parameters |
62 | - * @return array |
|
61 | + * @return string |
|
63 | 62 | */ |
64 | 63 | protected function resolve(array $parameters) |
65 | 64 | { |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * Get the current direction |
96 | 96 | * defaulting to ascending. |
97 | 97 | * |
98 | - * @param null $default |
|
98 | + * @param string $default |
|
99 | 99 | * @return string|null |
100 | 100 | */ |
101 | 101 | public function getDirection($default = null) |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | /** |
138 | 138 | * Get the header heading. |
139 | 139 | * |
140 | - * @return mixed |
|
140 | + * @return string |
|
141 | 141 | */ |
142 | 142 | public function getHeading() |
143 | 143 | { |
@@ -387,7 +387,7 @@ |
||
387 | 387 | * Get an option value. |
388 | 388 | * |
389 | 389 | * @param $key |
390 | - * @param null $default |
|
390 | + * @param integer|null $default |
|
391 | 391 | * @return mixed |
392 | 392 | */ |
393 | 393 | public function getOption($key, $default = null) |
@@ -21,7 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * Create a new EloquentModel instance. |
23 | 23 | * |
24 | - * @param EloquentModel $model |
|
24 | + * @param Model $model |
|
25 | 25 | */ |
26 | 26 | public function __construct(Model $model) |
27 | 27 | { |
@@ -119,7 +119,7 @@ |
||
119 | 119 | /** |
120 | 120 | * Drop a table. |
121 | 121 | * |
122 | - * @param $table |
|
122 | + * @param string $table |
|
123 | 123 | */ |
124 | 124 | public function dropTable($table) |
125 | 125 | { |
@@ -59,8 +59,8 @@ |
||
59 | 59 | * Get an item from an array or object using "dot" notation. |
60 | 60 | * |
61 | 61 | * @param mixed $target |
62 | - * @param string|array $key |
|
63 | - * @param mixed $default |
|
62 | + * @param string $key |
|
63 | + * @param string $default |
|
64 | 64 | * @return mixed |
65 | 65 | */ |
66 | 66 | function data($target, $key, $default = null) |