chore: update dependencies

This commit is contained in:
Jay Trees 2024-08-24 16:17:49 +02:00
parent 30123b24d3
commit 8142cc3977
1219 changed files with 25379 additions and 15428 deletions

View file

@ -26,9 +26,7 @@ interface SignalableCommandInterface
/**
* The method will be called when the application is signaled.
*
* @param int|false $previousExitCode
*
* @return int|false The exit code to return or false to continue the normal execution
*/
public function handleSignal(int $signal, /* int|false $previousExitCode = 0 */);
public function handleSignal(int $signal, int|false $previousExitCode = 0): int|false;
}