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