From 76624a4636b1e0cd282feb6aec3a9a0a31bcaa70 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Tue, 19 May 2026 11:46:14 +0200 Subject: [PATCH] Fix newly reported PHPStan errors --- src/Cron_Event_Command.php | 3 --- 1 file changed, 3 deletions(-) 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];