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