| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class UnsupportedTransportFactory implements TransportFactoryInterface |
||
| 13 | { |
||
| 14 | public function createTransport(string $dsn, array $options, SerializerInterface $serializer): TransportInterface |
||
| 15 | { |
||
| 16 | throw new RuntimeException('Unsupported transport'); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function supports(string $dsn, array $options): bool |
||
| 22 | } |
||
| 23 | } |
||
| 24 |