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();
    }