Spatie\Backup\Commands\BaseCommand::run PHP Method

run() public method

public run ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : integer
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
return integer
    public function run(InputInterface $input, OutputInterface $output)
    {
        app(ConsoleOutput::class)->setOutput($this);
        return parent::run($input, $output);
    }
BaseCommand