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