Skip to content

Commit 22e3c6e

Browse files
committed
phpcs
1 parent 0ca2ee1 commit 22e3c6e

12 files changed

+35
-35
lines changed

includes/acf-helper-functions.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ function acf_get_filters() {
200200
* @date 14/7/16
201201
* @since ACF 5.4.0
202202
*
203-
* @param array $filters An Array of modifiers
203+
* @param array $filters An Array of modifiers.
204204
* @return array
205205
*/
206206
function acf_set_filters( $filters = array() ) {
@@ -237,7 +237,7 @@ function acf_disable_filters() {
237237
* @date 14/7/16
238238
* @since ACF 5.4.0
239239
*
240-
* @param array $filters An Array of modifiers
240+
* @param array $filters An Array of modifiers.
241241
* @return array
242242
*/
243243
function acf_enable_filters( $filters = array() ) {

includes/api/api-helpers.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3043,7 +3043,7 @@ function _acf_settings_uploader( $uploader ) {
30433043
*
30443044
* @since ACF 5.3.2
30453045
*
3046-
* @param $string (mixed) string or array containing strings to be translated
3046+
* @param $string mixed string or array containing strings to be translated.
30473047
* @return $string
30483048
*/
30493049
function acf_translate( $string ) {

includes/fields/class-acf-field-file.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,9 @@ function validate_value( $valid, $value, $field, $input ) {
425425
/**
426426
* Validates file fields updated via the REST API.
427427
*
428-
* @param boolean $valid The current validity boolean
429-
* @param integer $value The value of the field
430-
* @param array $field The field array
428+
* @param boolean $valid The current validity boolean.
429+
* @param integer $value The value of the field.
430+
* @param array $field The field array.
431431
* @return boolean|WP_Error
432432
*/
433433
public function validate_rest_value( $valid, $value, $field ) {

includes/fields/class-acf-field-image.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ public function validate_value( $valid, $value, $field, $input ) {
428428
/**
429429
* Additional validation for the image field when submitted via REST.
430430
*
431-
* @param boolean $valid The current validity boolean
432-
* @param integer $value The value of the field
433-
* @param array $field The field array
431+
* @param boolean $valid The current validity boolean.
432+
* @param integer $value The value of the field.
433+
* @param array $field The field array.
434434
* @return boolean|WP_Error
435435
*/
436436
public function validate_rest_value( $valid, $value, $field ) {

includes/fields/class-acf-field-page_link.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -618,9 +618,9 @@ function update_value( $value, $post_id, $field ) {
618618
/**
619619
* Validates page link fields updated via the REST API.
620620
*
621-
* @param boolean $valid The current validity boolean
622-
* @param integer $value The value of the field
623-
* @param array $field The field array
621+
* @param boolean $valid The current validity boolean.
622+
* @param integer $value The value of the field.
623+
* @param array $field The field array.
624624
* @return boolean|WP_Error
625625
*/
626626
public function validate_rest_value( $valid, $value, $field ) {

includes/fields/class-acf-field-post_object.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -579,9 +579,9 @@ public function get_posts( $value, $field ) {
579579
*
580580
* @since ACF 5.11
581581
*
582-
* @param boolean $valid The current validity boolean
583-
* @param integer $value The value of the field
584-
* @param array $field The field array
582+
* @param boolean $valid The current validity boolean.
583+
* @param integer $value The value of the field.
584+
* @param array $field The field array.
585585
* @return boolean|WP_Error
586586
*/
587587
public function validate_rest_value( $valid, $value, $field ) {

includes/fields/class-acf-field-relationship.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -802,9 +802,9 @@ public function update_value( $value, $post_id, $field ) {
802802
/**
803803
* Validates relationship fields updated via the REST API.
804804
*
805-
* @param boolean $valid The current validity boolean
806-
* @param integer $value The value of the field
807-
* @param array $field The field array
805+
* @param boolean $valid The current validity boolean.
806+
* @param integer $value The value of the field.
807+
* @param array $field The field array.
808808
* @return boolean|WP_Error
809809
*/
810810
public function validate_rest_value( $valid, $value, $field ) {

includes/fields/class-acf-field-select.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -603,9 +603,9 @@ function format_value_single( $value, $post_id, $field ) {
603603
/**
604604
* Validates select fields updated via the REST API.
605605
*
606-
* @param boolean $valid The current validity boolean
607-
* @param integer $value The value of the field
608-
* @param array $field The field array
606+
* @param boolean $valid The current validity boolean.
607+
* @param integer $value The value of the field.
608+
* @param array $field The field array.
609609
* @return boolean|WP_Error
610610
*/
611611
public function validate_rest_value( $valid, $value, $field ) {

includes/fields/class-acf-field-text.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@ function render_field_presentation_settings( $field ) {
170170
* @date 29/1/19
171171
* @since ACF 5.7.117.11
172172
*
173-
* @param (bool|string) Whether the value is valid or not.
174-
* @param mixed $value The field value.
175-
* @param array $field The field array.
176-
* @param string $input The HTML input name.
173+
* @param mixed $valid Whether the value is valid or not.
174+
* @param mixed $value The field value.
175+
* @param array $field The field array.
176+
* @param string $input The HTML input name.
177177
* @return (bool|string)
178178
*/
179179
function validate_value( $valid, $value, $field, $input ) {

includes/fields/class-acf-field-textarea.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ function format_value( $value, $post_id, $field ) {
206206
* @date 29/1/19
207207
* @since ACF 5.7.11
208208
*
209-
* @param (bool|string) Whether the value is valid or not.
210-
* @param mixed $value The field value.
211-
* @param array $field The field array.
212-
* @param string $input The HTML input name.
209+
* @param mixed $valid Whether the value is valid or not.
210+
* @param mixed $value The field value.
211+
* @param array $field The field array.
212+
* @param string $input The HTML input name.
213213
* @return (bool|string)
214214
*/
215215
function validate_value( $valid, $value, $field, $input ) {

includes/fields/class-acf-field-user.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -531,9 +531,9 @@ function user_search_columns( $columns, $search, $WP_User_Query ) {
531531
/**
532532
* Validates user fields updated via the REST API.
533533
*
534-
* @param boolean $valid The current validity boolean
535-
* @param integer $value The value of the field
536-
* @param array $field The field array
534+
* @param boolean $valid The current validity boolean.
535+
* @param integer $value The value of the field.
536+
* @param array $field The field array.
537537
* @return boolean|WP_Error
538538
*/
539539
public function validate_rest_value( $valid, $value, $field ) {

includes/fields/class-acf-field.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ public function input_admin_l10n( $l10n ) {
222222
/**
223223
* Add additional validation for fields being updated via the REST API.
224224
*
225-
* @param boolean $valid The current validity boolean
226-
* @param integer $value The value of the field
227-
* @param array $field The field array
225+
* @param boolean $valid The current validity boolean.
226+
* @param integer $value The value of the field.
227+
* @param array $field The field array.
228228
* @return boolean|WP_Error
229229
*/
230230
public function validate_rest_value( $valid, $value, $field ) {

0 commit comments

Comments
 (0)