| 1 | <?php |
||
| 19 | class SystemMessage implements SystemMessageInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var MessageInterface |
||
| 23 | */ |
||
| 24 | protected $message; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var BusInterface |
||
| 28 | */ |
||
| 29 | protected $bus; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function setBus(BusInterface $bus) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function getBus() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function setMessage(MessageInterface &$message) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritdoc} |
||
| 57 | */ |
||
| 58 | public function getMessage() |
||
| 62 | } |
||
| 63 |