| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 7 | public function __construct(string $message = '', StringIterator $stringIterator = null, \Throwable $previous = null) |
|
| 27 | { |
||
| 28 | 7 | if (null !== $stringIterator) { |
|
| 29 | 1 | $this->stringIterator = $stringIterator; |
|
| 30 | 1 | $message .= sprintf(' [Line no: %d]', $this->getLineNumber()); |
|
| 31 | } |
||
| 32 | |||
| 33 | 7 | parent::__construct($message, 0, $previous); |
|
| 34 | 7 | } |
|
| 35 | |||
| 55 |