| 1 | <?php |
||
| 5 | class Verifier |
||
| 6 | { |
||
| 7 | public const STATUS_KEYWORD_VERIFIED = 'VERIFIED'; |
||
| 8 | public const STATUS_KEYWORD_INVALID = 'INVALID'; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var Service |
||
| 12 | */ |
||
| 13 | private $service; |
||
| 14 | |||
| 15 | public function __construct(Service $service) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @throws UnexpectedValueException |
||
| 22 | */ |
||
| 23 | public function verify(Message $message) : bool |
||
| 36 | } |
||
| 37 |