MiniAsset\Cli\BaseTask::bootstrapApp PHP Method

bootstrapApp() protected method

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