BackupManager\Laravel\DbListCommand::validateArguments PHP Метод

validateArguments() приватный Метод

private validateArguments ( ) : void
Результат void
    private function validateArguments()
    {
        $root = $this->filesystems->getConfig($this->option('source'), 'root');
        $this->info('Just to be sure...');
        $this->info(sprintf('Do you want to list files from <comment>%s</comment> on <comment>%s</comment>?', $root . $this->option('path'), $this->option('source')));
        $this->line('');
        $confirmation = $this->confirm('Are these correct? [Y/n]');
        if (!$confirmation) {
            $this->reaskArguments();
        }
    }