Файл: vendor/laravel/framework/src/Illuminate/Console/Events/CommandFinished.php
Строк: 59
<?php
namespace IlluminateConsoleEvents;
use SymfonyComponentConsoleInputInputInterface;
use SymfonyComponentConsoleOutputOutputInterface;
class CommandFinished
{
/**
* Create a new event instance.
*
* @param string $command The command name.
* @param SymfonyComponentConsoleInputInputInterface $input The console input implementation.
* @param SymfonyComponentConsoleOutputOutputInterface $output The command output implementation.
* @param int $exitCode The command exit code.
*/
public function __construct(
public string $command,
public InputInterface $input,
public OutputInterface $output,
public int $exitCode,
) {
}
}