whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
spatie
/
laravel-backup
/
src
/
Helpers
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/spatie/laravel-backup/src/Helpers/ConsoleOutput.php
<?php namespace Spatie\Backup\Helpers; use Illuminate\Console\Command; /** * @phpstan-ignore-next-line * * @mixin \Illuminate\Console\Concerns\InteractsWithIO */ class ConsoleOutput { protected ?Command $command = null; public function setCommand(Command $command): void { $this->command = $command; } public function __call(string $method, array $arguments) { $consoleOutput = app(static::class); if (! $consoleOutput->command) { return; } $consoleOutput->command->$method($arguments[0]); } }
Copyright ©2021 || Defacer Indonesia