| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class InvalidSignatureException extends Exception implements SkrillException |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @return InvalidSignatureException |
||
| 16 | */ |
||
| 17 | public static function emptySignature(): self |
||
| 18 | { |
||
| 19 | return new self('Signature should not be blank.'); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return InvalidSignatureException |
||
| 24 | */ |
||
| 25 | public static function lowercase(): self |
||
| 28 | } |
||
| 29 | } |
||
| 30 |