1 | <?php declare(strict_types=1); |
||
7 | abstract class EmptyVerification implements VerificationInterface, EmptyResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return bool |
||
11 | */ |
||
12 | public function verified() : bool |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function reason() : string |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function signature() : string |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function payload() : string |
||
40 | } |
||
41 |