Make WordPress Core


Ignore:
Timestamp:
04/05/2020 03:00:44 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict type check for in_array() and array_search() where strings are involved.

This reduces the number of WordPress.PHP.StrictInArray.MissingTrueStrict issues from 486 to 50.

Includes minor code layout fixes for better readability.

See #49542.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-text-diff-renderer-table.php

    r47122 r47550  
    503503     */
    504504    public function __get( $name ) {
    505         if ( in_array( $name, $this->compat_fields ) ) {
     505        if ( in_array( $name, $this->compat_fields, true ) ) {
    506506            return $this->$name;
    507507        }
     
    518518     */
    519519    public function __set( $name, $value ) {
    520         if ( in_array( $name, $this->compat_fields ) ) {
     520        if ( in_array( $name, $this->compat_fields, true ) ) {
    521521            return $this->$name = $value;
    522522        }
     
    532532     */
    533533    public function __isset( $name ) {
    534         if ( in_array( $name, $this->compat_fields ) ) {
     534        if ( in_array( $name, $this->compat_fields, true ) ) {
    535535            return isset( $this->$name );
    536536        }
     
    545545     */
    546546    public function __unset( $name ) {
    547         if ( in_array( $name, $this->compat_fields ) ) {
     547        if ( in_array( $name, $this->compat_fields, true ) ) {
    548548            unset( $this->$name );
    549549        }
Note: See TracChangeset for help on using the changeset viewer.