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

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

Execute the command.
public handle ( ) : void
Результат void
    public function handle()
    {
        $version = $this->getApplication()->getVersion();
        if (str_contains($version, '5.1')) {
            $this->laravelVersion = '5.1';
        } else {
            $this->laravelVersion = '5.2';
        }
        $this->copyView();
        $this->updateRoutes();
        $this->publishHomeController();
    }