We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -89,6 +89,7 @@ discard block |
||
89 | 89 | * Upload fields are the ones that have "upload" => true defined on them. |
90 | 90 | * @param [form] create / update / both - defaults to 'both' |
91 | 91 | * @param [id] id of the entity - defaults to false |
92 | + * @param string $form |
|
92 | 93 | * @return bool |
93 | 94 | */ |
94 | 95 | public function hasUploadFields($form, $id = false) |
@@ -122,6 +123,7 @@ discard block |
||
122 | 123 | |
123 | 124 | /** |
124 | 125 | * Set the number of rows that should be show on the list view. |
126 | + * @param integer $value |
|
125 | 127 | */ |
126 | 128 | public function setDefaultPageLength($value) |
127 | 129 | { |
@@ -169,7 +169,7 @@ |
||
169 | 169 | |
170 | 170 | /** |
171 | 171 | * Render the given view. |
172 | - * @param $view |
|
172 | + * @param string $view |
|
173 | 173 | * @param $column |
174 | 174 | * @param $entry |
175 | 175 | * @param int The number shown to the user as row number (index); |
@@ -30,7 +30,7 @@ |
||
30 | 30 | /** |
31 | 31 | * Execute the console command. |
32 | 32 | * |
33 | - * @return mixed |
|
33 | + * @return false|null |
|
34 | 34 | */ |
35 | 35 | public function handle() |
36 | 36 | { |
@@ -141,7 +141,7 @@ |
||
141 | 141 | /** |
142 | 142 | * Move the most recently added column after the given target column. |
143 | 143 | * |
144 | - * @param string|array $targetColumn The target column name or array. |
|
144 | + * @param string $targetColumn The target column name or array. |
|
145 | 145 | */ |
146 | 146 | public function afterColumn($targetColumn) |
147 | 147 | { |
@@ -59,6 +59,9 @@ discard block |
||
59 | 59 | $this->addButton($stack, $name, 'model_function', $model_function_name, $position); |
60 | 60 | } |
61 | 61 | |
62 | + /** |
|
63 | + * @param string $view |
|
64 | + */ |
|
62 | 65 | public function addButtonFromView($stack, $name, $view, $position = false) |
63 | 66 | { |
64 | 67 | if (! view()->exists($view)) { |
@@ -130,6 +133,9 @@ discard block |
||
130 | 133 | $this->buttons = collect([]); |
131 | 134 | } |
132 | 135 | |
136 | + /** |
|
137 | + * @param string $stack |
|
138 | + */ |
|
133 | 139 | public function removeAllButtonsFromStack($stack) |
134 | 140 | { |
135 | 141 | $this->buttons = $this->buttons->reject(function ($button) use ($stack) { |
@@ -152,6 +158,12 @@ discard block |
||
152 | 158 | public $type = 'view'; |
153 | 159 | public $content; |
154 | 160 | |
161 | + /** |
|
162 | + * @param string $stack |
|
163 | + * @param string $name |
|
164 | + * @param string $type |
|
165 | + * @param string $content |
|
166 | + */ |
|
155 | 167 | public function __construct($stack, $name, $type, $content) |
156 | 168 | { |
157 | 169 | $this->stack = $stack; |