@@ -63,7 +63,7 @@ class Transport
63
63
* @param HttpClientInterface|null $client
64
64
* @param LoggerInterface|null $logger
65
65
*/
66
- public static function fromDsn (string $ dsn/*, EventDispatcherInterface $dispatcher = null, HttpClientInterface $client = null, LoggerInterface $logger = null*/ ): TransportInterface
66
+ public static function fromDsn (string $ dsn/* , EventDispatcherInterface $dispatcher = null, HttpClientInterface $client = null, LoggerInterface $logger = null */ ): TransportInterface
67
67
{
68
68
$ dispatcher = 2 <= \func_num_args () ? func_get_arg (1 ) : null ;
69
69
$ client = 3 <= \func_num_args () ? func_get_arg (2 ) : null ;
@@ -79,7 +79,7 @@ public static function fromDsn(string $dsn/*, EventDispatcherInterface $dispatch
79
79
* @param HttpClientInterface|null $client
80
80
* @param LoggerInterface|null $logger
81
81
*/
82
- public static function fromDsns (array $ dsns/*, EventDispatcherInterface $dispatcher = null, HttpClientInterface $client = null, LoggerInterface $logger = null*/ ): TransportInterface
82
+ public static function fromDsns (array $ dsns/* , EventDispatcherInterface $dispatcher = null, HttpClientInterface $client = null, LoggerInterface $logger = null */ ): TransportInterface
83
83
{
84
84
$ dispatcher = 2 <= \func_num_args () ? func_get_arg (1 ) : null ;
85
85
$ client = 3 <= \func_num_args () ? func_get_arg (2 ) : null ;
@@ -183,7 +183,7 @@ public function fromDsnObject(Dsn $dsn): TransportInterface
183
183
*
184
184
* @return \Traversable<int, TransportFactoryInterface>
185
185
*/
186
- public static function getDefaultFactories (/*EventDispatcherInterface $dispatcher = null, HttpClientInterface $client = null, LoggerInterface $logger = null*/ ): iterable
186
+ public static function getDefaultFactories (/* EventDispatcherInterface $dispatcher = null, HttpClientInterface $client = null, LoggerInterface $logger = null */ ): iterable
187
187
{
188
188
$ dispatcher = 1 <= \func_num_args () ? func_get_arg (0 ) : null ;
189
189
$ client = 2 <= \func_num_args () ? func_get_arg (1 ) : null ;
0 commit comments