diff --git a/includes/EventManager.php b/includes/EventManager.php index d7620be..7289285 100644 --- a/includes/EventManager.php +++ b/includes/EventManager.php @@ -98,10 +98,9 @@ public function rest_api_init() { * @return array */ public function add_minutely_schedule( $schedules ) { - if ( ! array_key_exists( - 'minutely', - $schedules - ) || MINUTE_IN_SECONDS !== $schedules['minutely']['interval'] ) { + if ( ! array_key_exists( 'minutely', $schedules ) || + MINUTE_IN_SECONDS !== $schedules['minutely']['interval'] + ) { $schedules['minutely'] = array( 'interval' => MINUTE_IN_SECONDS, 'display' => __( 'Once Every Minute' ),