update patch 1
This commit is contained in:
@@ -21,15 +21,11 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
|
||||
*/
|
||||
abstract class AbstractTransportFactory implements TransportFactoryInterface
|
||||
{
|
||||
protected ?EventDispatcherInterface $dispatcher;
|
||||
protected ?HttpClientInterface $client;
|
||||
protected ?LoggerInterface $logger;
|
||||
|
||||
public function __construct(?EventDispatcherInterface $dispatcher = null, ?HttpClientInterface $client = null, ?LoggerInterface $logger = null)
|
||||
{
|
||||
$this->dispatcher = $dispatcher;
|
||||
$this->client = $client;
|
||||
$this->logger = $logger;
|
||||
public function __construct(
|
||||
protected ?EventDispatcherInterface $dispatcher = null,
|
||||
protected ?HttpClientInterface $client = null,
|
||||
protected ?LoggerInterface $logger = null,
|
||||
) {
|
||||
}
|
||||
|
||||
public function supports(Dsn $dsn): bool
|
||||
|
||||
Reference in New Issue
Block a user