*/ class ServiceProvider implements ServiceProviderInterface { /** * {@inheritdoc}. */ public function register(Container $pimple): void { $pimple['share'] = static function($app) { return new Client($app); }; } }