| 1 | <?php |
||
| 17 | class SimpleMessageHandlerProvider implements MessageHandlerProvider |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | private $handlers; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param MessageHandler[]|callable[] $handlers |
||
| 26 | */ |
||
| 27 | public function __construct(array $handlers) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritdoc |
||
| 34 | */ |
||
| 35 | public function __invoke(Message $message) |
||
| 46 | } |
||
| 47 |