1 | <?php |
||
8 | class Message implements MessageInterface |
||
9 | { |
||
10 | protected $message; |
||
11 | protected $validator; |
||
12 | |||
13 | public function __construct($message, ValidatorInterface $validator = null) |
||
21 | |||
22 | public function attachValidator(ValidatorInterface $validator) |
||
26 | |||
27 | public function getMessage() |
||
31 | |||
32 | public function getValidator() |
||
36 | |||
37 | public function hasValidator() |
||
41 | } |
||
42 |