Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
20 | 3 | public function __construct(string $message = '', StringIterator $stringIterator = null) |
|
21 | { |
||
22 | 3 | if (null !== $stringIterator) { |
|
23 | 1 | $this->stringIterator = $stringIterator; |
|
24 | 1 | $message .= sprintf(' [Line no: %d]', $this->getLineNumber()); |
|
25 | } |
||
26 | |||
27 | 3 | parent::__construct($message); |
|
28 | 3 | } |
|
51 |