Conditions | 2 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
39 | 7 | public function __construct( |
|
40 | $format = null, |
||
41 | $allowInlineLineBreaks = true, |
||
42 | $ignoreEmptyContextAndExtra = true, |
||
43 | $maxLength = self::MAX_LENGTH_DEFAULT |
||
44 | ) { |
||
45 | 7 | parent::__construct( |
|
46 | 7 | $format ?: static::FORMAT_DEFAULT, |
|
47 | 7 | null, |
|
48 | 7 | $allowInlineLineBreaks, |
|
49 | 7 | $ignoreEmptyContextAndExtra |
|
50 | ); |
||
51 | |||
52 | 7 | $this->maxLength = $maxLength; |
|
53 | 7 | } |
|
54 | |||
69 |