Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function __construct(int $offset, int $whence, $message = '', $code = 0, Throwable $previous = null) |
||
12 | { |
||
13 | parent::__construct($message, $code, $previous); |
||
14 | if ($message === '') { |
||
15 | $this->message = 'Unable to seek to stream position ' . $offset . ' with whence ' . var_export($whence, true); |
||
16 | } |
||
17 | } |
||
18 | } |