Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
27 | public function __construct($timestamp, ResponseInterface $response, Exception $previous = null) |
||
28 | { |
||
29 | $message = sprintf( |
||
30 | 'The supplied timestamp: %d is more than %d seconds different to now: %d', |
||
31 | $timestamp, |
||
32 | Signature::TIMESTAMP_OFFSET, |
||
33 | time() |
||
34 | ); |
||
35 | |||
36 | parent::__construct($response, $message, $previous); |
||
37 | } |
||
38 | } |
||
39 |