vendor/sentry/sentry-symfony/src/Transport/TransportFactory.php line 63

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sentry\SentryBundle\Transport;
  4. use Http\Client\HttpAsyncClient as HttpAsyncClientInterface;
  5. use Http\Discovery\Psr17FactoryDiscovery;
  6. use Psr\Http\Message\RequestFactoryInterface;
  7. use Psr\Http\Message\ResponseFactoryInterface;
  8. use Psr\Http\Message\StreamFactoryInterface;
  9. use Psr\Http\Message\UriFactoryInterface;
  10. use Psr\Log\LoggerInterface;
  11. use Sentry\HttpClient\HttpClientFactory;
  12. use Sentry\Options;
  13. use Sentry\SentryBundle\SentryBundle;
  14. use Sentry\Transport\DefaultTransportFactory;
  15. use Sentry\Transport\TransportFactoryInterface;
  16. use Sentry\Transport\TransportInterface;
  17. /**
  18.  * This class wraps the default transport factory provided by the core SDK and
  19.  * discovers automatically the PSR-17 factory if the user did not configure it
  20.  * explicitly.
  21.  */
  22. final class TransportFactory implements TransportFactoryInterface
  23. {
  24.     /**
  25.      * @var DefaultTransportFactory
  26.      */
  27.     private $decoratedTransportFactory;
  28.     public function __construct(
  29.         ?UriFactoryInterface $uriFactory null,
  30.         ?RequestFactoryInterface $requestFactory null,
  31.         ?ResponseFactoryInterface $responseFactory null,
  32.         ?StreamFactoryInterface $streamFactory null,
  33.         ?HttpAsyncClientInterface $httpClient null,
  34.         ?LoggerInterface $logger null
  35.     ) {
  36.         $uriFactory $uriFactory ?? Psr17FactoryDiscovery::findUriFactory();
  37.         $requestFactory $requestFactory ?? Psr17FactoryDiscovery::findRequestFactory();
  38.         $responseFactory $responseFactory ?? Psr17FactoryDiscovery::findResponseFactory();
  39.         $streamFactory $streamFactory ?? Psr17FactoryDiscovery::findStreamFactory();
  40.         $this->decoratedTransportFactory = new DefaultTransportFactory(
  41.             $streamFactory,
  42.             $requestFactory,
  43.             new HttpClientFactory(
  44.                 $uriFactory,
  45.                 $responseFactory,
  46.                 $streamFactory,
  47.                 $httpClient,
  48.                 'sentry.php.symfony',
  49.                 SentryBundle::SDK_VERSION
  50.             ),
  51.             $logger
  52.         );
  53.     }
  54.     public function create(Options $options): TransportInterface
  55.     {
  56.         return $this->decoratedTransportFactory->create($options);
  57.     }
  58. }