Make WordPress Core


Ignore:
Timestamp:
07/02/2019 11:41:16 PM (5 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-meta-query.php

    r44518 r45590  
    313313     */
    314314    public function get_sql( $type, $primary_table, $primary_id_column, $context = null ) {
    315         if ( ! $meta_table = _get_meta_table( $type ) ) {
     315        $meta_table = _get_meta_table( $type );
     316        if ( ! $meta_table ) {
    316317            return false;
    317318        }
Note: See TracChangeset for help on using the changeset viewer.