Skip to content

Commit

Permalink
fix: align equal signs
Browse files Browse the repository at this point in the history
  • Loading branch information
florianbrinkmann committed May 22, 2024
1 parent 837fb1d commit 2c76443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Helpers/DebugMode.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public static function log( string $message ) {
return;
}

$date = date( 'Y-m-d' ); // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date
$time = date( 'H-i-s' ); // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date
$date = date( 'Y-m-d' ); // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date
$time = date( 'H-i-s' ); // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date
$log_dir = defined( 'ANTISPAM_BEE_DEBUG_MODE_LOG_DIR' ) ? \ANTISPAM_BEE_DEBUG_MODE_LOG_DIR : \WP_CONTENT_DIR;

if ( ! is_dir( $log_dir ) ) {
Expand Down

0 comments on commit 2c76443

Please sign in to comment.