container = $container; } /** * Whether the service provider will be a deferred one or not. * * @return bool */ public function isDeferred() { return $this->deferred; } /** * Returns an array of the class or interfaces bound and provided by the service provider. * * @return array A list of fully-qualified implementations provided by the service provider. */ public function provides() { return []; } /** * Binds and sets up implementations at boot time. * * @return void The method will not return any value. */ public function boot() { // no-op } /** * Registers the service provider bindings. * * @return void The method does not return any value. */ abstract public function register(); }