Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class InvalidUidSignatureException extends ResponseException |
||
20 | { |
||
21 | /** |
||
22 | * @param string $uid |
||
23 | * @param string $expected |
||
24 | * @param string $signature |
||
25 | * @param ResponseInterface $response |
||
26 | * @param Exception|null $previous |
||
27 | */ |
||
28 | 2 | public function __construct($uid, $expected, $signature, ResponseInterface $response, Exception $previous = null) |
|
40 |