Larabros\Elogram\Container\Builder::registerProviders PHP Method

registerProviders() public method

Register default service providers onto the container.
public registerProviders ( array $providers = [] ) : Builder
$providers array
return Builder
    public function registerProviders(array $providers = [])
    {
        foreach ($providers as $provider) {
            $this->registerProvider($provider);
        }
        return $this;
    }