REBELinBLUE\Deployer\Console\Kernel::bootstrappers PHP Метод

bootstrappers() защищенный Метод

Get the bootstrap classes for the application.
protected bootstrappers ( ) : array
Результат array
    protected function bootstrappers()
    {
        foreach ($this->bootstrappers as &$bootstrapper) {
            foreach ($this->customBooters as $sourceBooter => $newBooter) {
                if ($bootstrapper === $sourceBooter) {
                    $bootstrapper = $newBooter;
                    unset($this->customBooters[$sourceBooter]);
                }
            }
        }
        return array_merge(array_diff($this->bootstrappers, $this->disabledBooters), $this->customBooters);
    }