Total Complexity | 5 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
15 | final class TestTransportFactory implements TransportFactoryInterface |
||
16 | { |
||
17 | private MessageBusInterface $bus; |
||
18 | |||
19 | public function __construct(MessageBusInterface $bus) |
||
22 | } |
||
23 | |||
24 | public function createTransport(string $dsn, array $options, SerializerInterface $serializer): TransportInterface |
||
27 | } |
||
28 | |||
29 | public function supports(string $dsn, array $options): bool |
||
32 | } |
||
33 | |||
34 | private function parseDsn(string $dsn): array |
||
48 |