update patch 1

This commit is contained in:
fiqhpratama
2024-12-02 01:18:34 +07:00
parent 453d9bb470
commit 25026b0a85
3380 changed files with 103529 additions and 363623 deletions
@@ -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