| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 2 | public function __construct($uid, $expected, $signature, ResponseInterface $response, Exception $previous = null) |
|
| 29 | { |
||
| 30 | 2 | $message = sprintf( |
|
| 31 | 2 | "The supplied signature for uid: %s does not match.\n Expected '%s'\n Supplied '%s'", |
|
| 32 | 2 | $uid, |
|
| 33 | 2 | $expected, |
|
| 34 | $signature |
||
| 35 | 2 | ); |
|
| 36 | |||
| 37 | 2 | parent::__construct($response, $message, $previous); |
|
| 38 | 2 | } |
|
| 39 | } |
||
| 40 |