Repository URL to install this package:
|
Version:
3.6.0.3 ▾
|
jsarnowski/wp-rocket
/
league
/
container
/
src
/
ServiceProvider
/
BootableServiceProviderInterface.php
|
|---|
<?php
namespace League\Container\ServiceProvider;
interface BootableServiceProviderInterface extends ServiceProviderInterface
{
/**
* Method will be invoked on registration of a service provider implementing
* this interface. Provides ability for eager loading of Service Providers.
*
* @return void
*/
public function boot();
}