1 | <?php |
||
24 | class JMSHandlerRegistry implements HandlerRegistryInterface |
||
25 | { |
||
26 | private $registry; |
||
27 | |||
28 | 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($direction, $typeName, $format, $handler): void |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function getHandler($direction, $typeName, $format) |
||
61 | } |
||
62 |