/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Console/Concerns
NameSizeModeActions
CallsCommands.php29780644editdlrm
HasParameters.php14390644editdlrm
InteractsWithIO.php107710644editdlrm
Edit: /var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Console/Concerns/HasParameters.php (1439B)
getArguments() as $arguments) { if ($arguments instanceof InputArgument) { $this->getDefinition()->addArgument($arguments); } else { $this->addArgument(...array_values($arguments)); } } foreach ($this->getOptions() as $options) { if ($options instanceof InputOption) { $this->getDefinition()->addOption($options); } else { $this->addOption(...array_values($options)); } } } /** * Get the console command arguments. * * @return array */ protected function getArguments() { return []; } /** * Get the console command options. * * @return array */ protected function getOptions() { return []; } }