array( 'type' => 'warning', 'message' => 'Detected usage of %s, possible slow query.', 'keys' => array( 'tax_query', 'meta_query', 'meta_key', 'meta_value', ), ), ); } /** * Processes this test, when one of its tokens is encountered. * * @since 0.10.0 * * @param int $stackPtr The position of the current token in the stack. * * @return int|void Integer stack pointer to skip forward or void to continue * normal file processing. */ public function process_token( $stackPtr ) { if ( $this->has_whitelist_comment( 'slow query', $stackPtr ) ) { return; } if ( $this->has_whitelist_comment( 'tax_query', $stackPtr ) ) { /* * Only throw the warning about a deprecated comment when the sniff would otherwise * have been triggered on the array key. */ if ( \in_array( $this->tokens[ $stackPtr ]['code'], array( \T_CONSTANT_ENCAPSED_STRING, \T_DOUBLE_QUOTED_STRING ), true ) ) { $this->phpcsFile->addWarning( 'The "tax_query" whitelist comment is deprecated in favor of the "slow query" whitelist comment.', $stackPtr, 'DeprecatedWhitelistFlagFound' ); } return; } return parent::process_token( $stackPtr ); } /** * Callback to process each confirmed key, to check value. * This must be extended to add the logic to check assignment value. * * @param string $key Array index / key. * @param mixed $val Assigned value. * @param int $line Token line. * @param array $group Group definition. * @return mixed FALSE if no match, TRUE if matches, STRING if matches * with custom error message passed to ->process(). */ public function callback( $key, $val, $line, $group ) { return true; } }