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

bootstrap() публичный Метод

Bootstrap the application for artisan commands.
public bootstrap ( )
    public function bootstrap()
    {
        parent::bootstrap();
        // Only register the reset command on the local environment
        if ($this->app->environment() === 'local') {
            $this->commands[] = ResetApp::class;
        }
    }