@@ -27,7 +27,7 @@ |
||
27 | 27 | /** |
28 | 28 | * Create a new SetAddonPath instance. |
29 | 29 | * |
30 | - * @param ResetCommand $command |
|
30 | + * @param Command $command |
|
31 | 31 | * @param InputInterface $input |
32 | 32 | */ |
33 | 33 | public function __construct(Command $command, InputInterface $input) |
@@ -17,7 +17,6 @@ |
||
17 | 17 | /** |
18 | 18 | * Return the sorted entries. |
19 | 19 | * |
20 | - * @param bool|false $reverse |
|
21 | 20 | * @return static |
22 | 21 | */ |
23 | 22 | public function sorted($direction = 'asc') |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | /** |
224 | 224 | * Set a field value. |
225 | 225 | * |
226 | - * @param $fieldSlug |
|
226 | + * @param string $fieldSlug |
|
227 | 227 | * @param $value |
228 | 228 | * @param null $locale |
229 | 229 | * @return $this |
@@ -633,7 +633,7 @@ discard block |
||
633 | 633 | * Return whether or not the assignment for |
634 | 634 | * the given field slug is translatable. |
635 | 635 | * |
636 | - * @param $fieldSlug |
|
636 | + * @param string $fieldSlug |
|
637 | 637 | * @return bool |
638 | 638 | */ |
639 | 639 | public function assignmentIsTranslatable($fieldSlug) |
@@ -48,7 +48,7 @@ |
||
48 | 48 | * Render the given HttpException. |
49 | 49 | * |
50 | 50 | * @param \Symfony\Component\HttpKernel\Exception\HttpException $e |
51 | - * @return \Symfony\Component\HttpFoundation\Response |
|
51 | + * @return Response|null |
|
52 | 52 | */ |
53 | 53 | protected function renderHttpException(HttpException $e) |
54 | 54 | { |
@@ -105,7 +105,6 @@ |
||
105 | 105 | /** |
106 | 106 | * Get the name. |
107 | 107 | * |
108 | - * @param null|string $locale |
|
109 | 108 | * @return string |
110 | 109 | */ |
111 | 110 | public function getName() |
@@ -2,9 +2,7 @@ |
||
2 | 2 | |
3 | 3 | use Anomaly\Streams\Platform\Application\Application; |
4 | 4 | use Anomaly\Streams\Platform\Stream\Contract\StreamInterface; |
5 | -use Illuminate\Contracts\Config\Repository; |
|
6 | 5 | use Illuminate\Filesystem\Filesystem; |
7 | -use Laravel\Scout\EngineManager; |
|
8 | 6 | |
9 | 7 | class DeleteEntryIndex |
10 | 8 | { |
@@ -41,7 +41,7 @@ |
||
41 | 41 | /** |
42 | 42 | * Get the paginated entries. |
43 | 43 | * |
44 | - * @return Collection |
|
44 | + * @return Paginator |
|
45 | 45 | */ |
46 | 46 | public function paginate($perPage = 15, $pageName = 'page', $page = null) |
47 | 47 | { |
@@ -103,7 +103,7 @@ |
||
103 | 103 | /** |
104 | 104 | * Return the currency symbol. |
105 | 105 | * |
106 | - * @param null $currency |
|
106 | + * @param string $currency |
|
107 | 107 | * @return string |
108 | 108 | */ |
109 | 109 | public function symbol($currency = null) |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | /** |
179 | 179 | * Close the current form. |
180 | 180 | * |
181 | - * @return string |
|
181 | + * @return HtmlString |
|
182 | 182 | */ |
183 | 183 | public function close() |
184 | 184 | { |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | /** |
193 | 193 | * Generate a hidden field with the current CSRF token. |
194 | 194 | * |
195 | - * @return string |
|
195 | + * @return HtmlString |
|
196 | 196 | */ |
197 | 197 | public function token() |
198 | 198 | { |
@@ -591,11 +591,6 @@ discard block |
||
591 | 591 | /** |
592 | 592 | * Create a select year field. |
593 | 593 | * |
594 | - * @param string $name |
|
595 | - * @param string $begin |
|
596 | - * @param string $end |
|
597 | - * @param string $selected |
|
598 | - * @param array $options |
|
599 | 594 | * |
600 | 595 | * @return mixed |
601 | 596 | */ |
@@ -684,7 +679,7 @@ discard block |
||
684 | 679 | /** |
685 | 680 | * Create a placeholder select element option. |
686 | 681 | * |
687 | - * @param $display |
|
682 | + * @param string $display |
|
688 | 683 | * @param $selected |
689 | 684 | * |
690 | 685 | * @return \Illuminate\Support\HtmlString |
@@ -720,7 +715,7 @@ discard block |
||
720 | 715 | * Create a checkbox input field. |
721 | 716 | * |
722 | 717 | * @param string $name |
723 | - * @param mixed $value |
|
718 | + * @param integer $value |
|
724 | 719 | * @param bool $checked |
725 | 720 | * @param array $options |
726 | 721 | * |
@@ -1140,7 +1135,7 @@ discard block |
||
1140 | 1135 | * |
1141 | 1136 | * @param string $key |
1142 | 1137 | * |
1143 | - * @return mixed |
|
1138 | + * @return string |
|
1144 | 1139 | */ |
1145 | 1140 | protected function transformKey($key) |
1146 | 1141 | { |