Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fumikito committed Feb 12, 2024
1 parent 8c11e42 commit 89e52f1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/WCTokyo/WpCheckin/Tickets.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public static function search( $query = '', $page = 1 ) {
$tickets = array_values( array_filter( self::tickets( false ), function( $ticket ) use ( $query ) {
$not_found = false;
foreach ( $query as $index => $value ) {
// phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
if ( ! isset( $ticket[ $index ] ) || $ticket[ $index ] != $value ) {
$not_found = true;
break;
Expand Down

0 comments on commit 89e52f1

Please sign in to comment.