| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class VerifyMessage implements Command |
||
| 8 | { |
||
| 9 | private const METHOD = 'verifymessage'; |
||
| 10 | private $address; |
||
| 11 | private $signature; |
||
| 12 | private $message; |
||
| 13 | |||
| 14 | 1 | public function __construct(string $address, string $signature, string $message) |
|
| 19 | 1 | } |
|
| 20 | |||
| 21 | 1 | public function jsonSerialize(): object |
|
| 31 |