You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@trigger_error(sprintf('The static %s() method is deprecated and no longer used.', __METHOD__), E_USER_DEPRECATED);
430
+
427
431
$console = newConsole();
428
432
429
433
// Show basic information before we do anything else.
@@ -439,8 +443,13 @@ protected static function initializeConsole(): Console
439
443
440
444
protectedstaticfunctionrunCommand(Console$console): int
441
445
{
442
-
$exit = $console->run();
446
+
$exitCode = $console->initialize()->run();
447
+
448
+
if (! is_int($exitCode)) {
449
+
@trigger_error(sprintf('Starting with CodeIgniter v4.8.0, commands must return an integer exit code. Last command exited with %s. Defaulting to EXIT_SUCCESS.', get_debug_type($exitCode)), E_USER_DEPRECATED);
0 commit comments