Skip to content

Commit

Permalink
Linter fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
aerkkilae committed Sep 4, 2023
1 parent 6d3e4c4 commit 35480bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Eventz.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ public static function format_price( $price ) : ?string {
$formatted_price = $price->min;
}

if( empty ( $formatted_price ) ) {
if ( empty ( $formatted_price ) ) {

Check failure on line 299 in lib/Eventz.php

View workflow job for this annotation

GitHub Actions / phpcs-check

Space before opening parenthesis of function call prohibited
$formatted_price = $price->min . '-' . $price->max;
}

Expand Down

0 comments on commit 35480bc

Please sign in to comment.