@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | * |
276 | 276 | * @uses GravityView_frontend::get_search_criteria() Convert the $_POST search request into a properly formatted request. |
277 | 277 | * @access public |
278 | - * @return void|boolean |
|
278 | + * @return false|null |
|
279 | 279 | */ |
280 | 280 | public function process_bulk_action() { |
281 | 281 | |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | * @param array|boolean $entries If array, array of entry IDs that are to be updated. If true: update all entries. |
361 | 361 | * @param int $approved Approved status. If `0`: unapproved, if not empty, `Approved` |
362 | 362 | * @param int $form_id The Gravity Forms Form ID |
363 | - * @return boolean|void |
|
363 | + * @return false|null |
|
364 | 364 | */ |
365 | 365 | private static function update_bulk( $entries, $approved, $form_id ) { |
366 | 366 | |
@@ -609,7 +609,7 @@ discard block |
||
609 | 609 | * @access public |
610 | 610 | * @static |
611 | 611 | * @param mixed $form GF Form or Form ID |
612 | - * @return false|null|string Returns the input ID of the approved field. Returns NULL if no approved fields were found. Returns false if $form_id wasn't set. |
|
612 | + * @return integer Returns the input ID of the approved field. Returns NULL if no approved fields were found. Returns false if $form_id wasn't set. |
|
613 | 613 | */ |
614 | 614 | static public function get_approved_column( $form ) { |
615 | 615 |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | |
151 | 151 | /** |
152 | 152 | * Sets the single entry ID and also the entry |
153 | - * @param bool|int|string $single_entry |
|
153 | + * @param boolean|string $single_entry |
|
154 | 154 | */ |
155 | 155 | public function setSingleEntry( $single_entry ) { |
156 | 156 | |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | |
168 | 168 | /** |
169 | 169 | * Set the current entry |
170 | - * @param array|int $entry Entry array or entry slug or ID |
|
170 | + * @param boolean|string $entry Entry array or entry slug or ID |
|
171 | 171 | */ |
172 | 172 | public function setEntry( $entry ) { |
173 | 173 | |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | * |
226 | 226 | * |
227 | 227 | * |
228 | - * @param null $view_id |
|
228 | + * @param string $view_id |
|
229 | 229 | */ |
230 | 230 | public function set_context_view_id( $view_id = null ) { |
231 | 231 | |
@@ -957,7 +957,7 @@ discard block |
||
957 | 957 | * |
958 | 958 | * @uses gravityview_get_entries() |
959 | 959 | * @access public |
960 | - * @param array $args\n |
|
960 | + * @param array $args |
|
961 | 961 | * - $id - View id |
962 | 962 | * - $page_size - Page |
963 | 963 | * - $sort_field - form field id to sort |
@@ -1413,7 +1413,7 @@ discard block |
||
1413 | 1413 | /** |
1414 | 1414 | * Checks if field (column) is sortable |
1415 | 1415 | * |
1416 | - * @param string $field Field settings |
|
1416 | + * @param string $field_id Field settings |
|
1417 | 1417 | * @param array $form Gravity Forms form array |
1418 | 1418 | * |
1419 | 1419 | * @since 1.7 |