1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00

Update composer

This commit is contained in:
Daniel Neto 2024-03-05 19:29:45 -03:00
parent 330cdbe615
commit 0c83c9a678
442 changed files with 9523 additions and 10793 deletions

View file

@ -25,8 +25,8 @@ class ConsoleEvent extends Event
{
protected $command;
private InputInterface $input;
private OutputInterface $output;
private $input;
private $output;
public function __construct(?Command $command, InputInterface $input, OutputInterface $output)
{
@ -37,24 +37,30 @@ class ConsoleEvent extends Event
/**
* Gets the command that is executed.
*
* @return Command|null
*/
public function getCommand(): ?Command
public function getCommand()
{
return $this->command;
}
/**
* Gets the input instance.
*
* @return InputInterface
*/
public function getInput(): InputInterface
public function getInput()
{
return $this->input;
}
/**
* Gets the output instance.
*
* @return OutputInterface
*/
public function getOutput(): OutputInterface
public function getOutput()
{
return $this->output;
}