芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/sentry/sentry/src/Transport/DefaultTransportFactory.php
streamFactory = $streamFactory; $this->requestFactory = $requestFactory; $this->httpClientFactory = $httpClientFactory; $this->logger = $logger; } /** * {@inheritdoc} */ public function create(Options $options): TransportInterface { if (null === $options->getDsn()) { return new NullTransport(); } return new HttpTransport( $options, $this->httpClientFactory->create($options), $this->streamFactory, $this->requestFactory, new PayloadSerializer($options), $this->logger ); } }