@@ -301,6 +301,7 @@ |
||
| 301 | 301 | * Make protected public |
| 302 | 302 | * @inheritDoc |
| 303 | 303 | * @access public |
| 304 | + * @param string $setting_name |
|
| 304 | 305 | */ |
| 305 | 306 | public function get_app_setting( $setting_name ) { |
| 306 | 307 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | /** |
| 78 | 78 | * Alias for get_instance() |
| 79 | 79 | * |
| 80 | - * @param $field_name |
|
| 80 | + * @param string $field_name |
|
| 81 | 81 | * |
| 82 | 82 | * @return GravityView_Field|false |
| 83 | 83 | */ |
@@ -88,7 +88,6 @@ discard block |
||
| 88 | 88 | /** |
| 89 | 89 | * Alias for get_instance() |
| 90 | 90 | * |
| 91 | - * @param string|GF_Field $field_name Gravity Forms field class or the class name type |
|
| 92 | 91 | * |
| 93 | 92 | * @return GravityView_Field |
| 94 | 93 | */ |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | /** |
| 164 | 164 | * Add admin script to the no-conflict scripts whitelist |
| 165 | 165 | * @param array $allowed Scripts allowed in no-conflict mode |
| 166 | - * @return array Scripts allowed in no-conflict mode, plus the search widget script |
|
| 166 | + * @return string[] Scripts allowed in no-conflict mode, plus the search widget script |
|
| 167 | 167 | */ |
| 168 | 168 | public function register_no_conflict( $allowed ) { |
| 169 | 169 | $allowed[] = 'gravityview_searchwidget_admin'; |
@@ -977,7 +977,7 @@ discard block |
||
| 977 | 977 | /** |
| 978 | 978 | * Require the datepicker script for the frontend GV script |
| 979 | 979 | * @param array $js_dependencies Array of existing required scripts for the fe-views.js script |
| 980 | - * @return array Array required scripts, with `jquery-ui-datepicker` added |
|
| 980 | + * @return string[] Array required scripts, with `jquery-ui-datepicker` added |
|
| 981 | 981 | */ |
| 982 | 982 | public function add_datepicker_js_dependency( $js_dependencies ) { |
| 983 | 983 | |
@@ -989,7 +989,7 @@ discard block |
||
| 989 | 989 | /** |
| 990 | 990 | * Modify the array passed to wp_localize_script() |
| 991 | 991 | * |
| 992 | - * @param array $js_localization The data padded to the Javascript file |
|
| 992 | + * @param array $localizations The data padded to the Javascript file |
|
| 993 | 993 | * @param array $view_data View data array with View settings |
| 994 | 994 | * |
| 995 | 995 | * @return array |