@@ -28,7 +28,7 @@ |
||
28 | 28 | * |
29 | 29 | * @param string $target |
30 | 30 | * |
31 | - * @return mixed |
|
31 | + * @return string |
|
32 | 32 | */ |
33 | 33 | public function callInterventionMethods($target) |
34 | 34 | { |
@@ -8,6 +8,9 @@ discard block |
||
8 | 8 | |
9 | 9 | protected $append; |
10 | 10 | |
11 | + /** |
|
12 | + * @param string $string |
|
13 | + */ |
|
11 | 14 | public function prepend($string) |
12 | 15 | { |
13 | 16 | if (is_null($this->prepend)) { |
@@ -17,6 +20,9 @@ discard block |
||
17 | 20 | return $this; |
18 | 21 | } |
19 | 22 | |
23 | + /** |
|
24 | + * @param string $string |
|
25 | + */ |
|
20 | 26 | public function append($string) |
21 | 27 | { |
22 | 28 | if (is_null($this->append)) { |
@@ -33,6 +39,9 @@ discard block |
||
33 | 39 | } |
34 | 40 | } |
35 | 41 | |
42 | + /** |
|
43 | + * @param string $attribute |
|
44 | + */ |
|
36 | 45 | protected function defaultAttribute($attribute, $value) |
37 | 46 | { |
38 | 47 | if (!array_key_exists($attribute, $this->attributes)) { |
@@ -292,7 +292,7 @@ |
||
292 | 292 | /** |
293 | 293 | * Get the html and script of template. |
294 | 294 | * |
295 | - * @return array |
|
295 | + * @return string[] |
|
296 | 296 | */ |
297 | 297 | public function getTemplateHtmlAndScript() |
298 | 298 | { |
@@ -66,6 +66,9 @@ |
||
66 | 66 | EOT; |
67 | 67 | } |
68 | 68 | |
69 | + /** |
|
70 | + * @return string |
|
71 | + */ |
|
69 | 72 | public function listButton() |
70 | 73 | { |
71 | 74 | $slice = Str::contains($this->form->getResource(0), '/edit') ? null : -1; |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | /** |
126 | 126 | * Extend column displayer. |
127 | 127 | * |
128 | - * @param $name |
|
128 | + * @param string $name |
|
129 | 129 | * @param $displayer |
130 | 130 | */ |
131 | 131 | public static function extend($name, $displayer) |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | /** |
160 | 160 | * Set model for column. |
161 | 161 | * |
162 | - * @param $model |
|
162 | + * @param Model $model |
|
163 | 163 | */ |
164 | 164 | public function setModel($model) |
165 | 165 | { |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | /** |
217 | 217 | * Get name of this column. |
218 | 218 | * |
219 | - * @return mixed |
|
219 | + * @return string |
|
220 | 220 | */ |
221 | 221 | public function getName() |
222 | 222 | { |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | /** |
227 | 227 | * Format label. |
228 | 228 | * |
229 | - * @param $label |
|
229 | + * @param string $label |
|
230 | 230 | * |
231 | 231 | * @return mixed |
232 | 232 | */ |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | /** |
241 | 241 | * Get label of the column. |
242 | 242 | * |
243 | - * @return mixed |
|
243 | + * @return string |
|
244 | 244 | */ |
245 | 245 | public function getLabel() |
246 | 246 | { |
@@ -108,6 +108,7 @@ |
||
108 | 108 | |
109 | 109 | /** |
110 | 110 | * {@inheritdoc} |
111 | + * @param \Closure $callback |
|
111 | 112 | */ |
112 | 113 | public function display($callback = null) |
113 | 114 | { |
@@ -15,6 +15,9 @@ |
||
15 | 15 | |
16 | 16 | protected $format = 'YYYY-MM-DD HH:mm:ss'; |
17 | 17 | |
18 | + /** |
|
19 | + * @param \Encore\Admin\Grid\Filter\AbstractFilter $filter |
|
20 | + */ |
|
18 | 21 | public function __construct($filter, array $options = []) |
19 | 22 | { |
20 | 23 | $this->filter = $filter; |
@@ -183,7 +183,7 @@ |
||
183 | 183 | * |
184 | 184 | * @param string $target |
185 | 185 | * |
186 | - * @return mixed |
|
186 | + * @return string |
|
187 | 187 | */ |
188 | 188 | protected function getClass($target) |
189 | 189 | { |
@@ -229,7 +229,7 @@ |
||
229 | 229 | /** |
230 | 230 | * Get options for Select field in form. |
231 | 231 | * |
232 | - * @return \Illuminate\Support\Collection |
|
232 | + * @return callable |
|
233 | 233 | */ |
234 | 234 | public static function selectOptions() |
235 | 235 | { |