MiniAsset\Cli\BaseTask::bootstrapApp PHP 메소드

bootstrapApp() 보호된 메소드

Include any additional bootstrap files an application might need to create its environment of constants.
protected bootstrapApp ( ) : void
리턴 void
    protected function bootstrapApp()
    {
        $files = explode(',', $this->cli->arguments->get('bootstrap'));
        foreach ($files as $file) {
            require_once $file;
        }
    }