Encore\Admin\Commands\MakeCommand::handle PHP Метод

handle() публичный Метод

Execute the console command.
public handle ( ) : void
Результат void
    public function handle()
    {
        if (!$this->modelExists()) {
            $this->error('Model does not exists !');
            return false;
        }
        $this->type = $this->parseName($this->getNameInput());
        parent::fire();
    }