diff --git a/src/Cron_Event_Command.php b/src/Cron_Event_Command.php index 9dba3ad8..7887c7a0 100644 --- a/src/Cron_Event_Command.php +++ b/src/Cron_Event_Command.php @@ -861,9 +861,6 @@ protected static function format_callback( $callback ) { if ( is_string( $callback ) ) { return $callback; } elseif ( is_array( $callback ) && count( $callback ) === 2 ) { - /** - * @var array{0: string, 1: string} $callback - */ $class = $callback[0]; $method = $callback[1];