| 1 | <?php |
||
| 24 | final class JMSHandlerRegistryV2 implements HandlerRegistryInterface |
||
| 25 | { |
||
| 26 | private $registry; |
||
| 27 | |||
| 28 | 7 | public function __construct(HandlerRegistryInterface $registry) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function registerSubscribingHandler(SubscribingHandlerInterface $handler): void |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | public function registerHandler(int $direction, string $typeName, string $format, $handler): void |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | 6 | public function getHandler(int $direction, string $typeName, string $format) |
|
| 61 | } |
||
| 62 |