vendor/sentry/sentry/src/Transport/DefaultTransportFactory.php line 67

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sentry\Transport;
  4. use Psr\Http\Message\RequestFactoryInterface;
  5. use Psr\Http\Message\StreamFactoryInterface;
  6. use Psr\Log\LoggerInterface;
  7. use Sentry\HttpClient\HttpClientFactoryInterface;
  8. use Sentry\Options;
  9. use Sentry\Serializer\PayloadSerializer;
  10. /**
  11.  * This class is the default implementation of the {@see TransportFactoryInterface}
  12.  * interface.
  13.  */
  14. final class DefaultTransportFactory implements TransportFactoryInterface
  15. {
  16.     /**
  17.      * @var StreamFactoryInterface A PSR-7 stream factory
  18.      */
  19.     private $streamFactory;
  20.     /**
  21.      * @var RequestFactoryInterface A PSR-7 request factory
  22.      */
  23.     private $requestFactory;
  24.     /**
  25.      * @var HttpClientFactoryInterface A factory to create the HTTP client
  26.      */
  27.     private $httpClientFactory;
  28.     /**
  29.      * @var LoggerInterface|null A PSR-3 logger
  30.      */
  31.     private $logger;
  32.     /**
  33.      * Constructor.
  34.      *
  35.      * @param StreamFactoryInterface     $streamFactory     The PSR-7 stream factory
  36.      * @param RequestFactoryInterface    $requestFactory    The PSR-7 request factory
  37.      * @param HttpClientFactoryInterface $httpClientFactory The HTTP client factory
  38.      * @param LoggerInterface|null       $logger            An optional PSR-3 logger
  39.      */
  40.     public function __construct(StreamFactoryInterface $streamFactoryRequestFactoryInterface $requestFactoryHttpClientFactoryInterface $httpClientFactory, ?LoggerInterface $logger null)
  41.     {
  42.         $this->streamFactory $streamFactory;
  43.         $this->requestFactory $requestFactory;
  44.         $this->httpClientFactory $httpClientFactory;
  45.         $this->logger $logger;
  46.     }
  47.     /**
  48.      * {@inheritdoc}
  49.      */
  50.     public function create(Options $options): TransportInterface
  51.     {
  52.         if (null === $options->getDsn()) {
  53.             return new NullTransport();
  54.         }
  55.         return new HttpTransport(
  56.             $options,
  57.             $this->httpClientFactory->create($options),
  58.             $this->streamFactory,
  59.             $this->requestFactory,
  60.             new PayloadSerializer($options),
  61.             $this->logger
  62.         );
  63.     }
  64. }