InfyOm\Generator\Commands\BaseCommand::handle PHP Метод

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

public handle ( )
    public function handle()
    {
        $this->commandData->modelName = $this->argument('model');
        $this->commandData->initCommandData();
        $this->commandData->getInputFields();
    }

Usage Example

 /**
  * Execute the command.
  *
  * @return void
  */
 public function handle()
 {
     parent::handle();
     $viewGenerator = new ViewGenerator($this->commandData);
     $viewGenerator->generate();
     $this->performPostActions();
 }
All Usage Examples Of InfyOm\Generator\Commands\BaseCommand::handle