option('short') ?? $this->ask(trans('command/messages.location.ask_short')); $long = $this->option('long') ?? $this->ask(trans('command/messages.location.ask_long')); $location = $this->creationService->handle(compact('short', 'long')); $this->line(trans('command/messages.location.created', [ 'name' => $location->short, 'id' => $location->id, ])); } }