| Conditions | 2 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 27 | 7 | public function __construct( |
|
| 28 | string $format = null, |
||
| 29 | bool $allowInlineLineBreaks = true, |
||
| 30 | bool $ignoreEmptyContextAndExtra = true, |
||
| 31 | int $maxLength = self::MAX_LENGTH_DEFAULT |
||
| 32 | ) { |
||
| 33 | 7 | parent::__construct( |
|
| 34 | 7 | $format ?: static::FORMAT_DEFAULT, |
|
| 35 | 7 | null, |
|
| 36 | 7 | $allowInlineLineBreaks, |
|
| 37 | 7 | $ignoreEmptyContextAndExtra |
|
| 38 | ); |
||
| 39 | |||
| 40 | 7 | $this->maxLength = $maxLength; |
|
| 41 | 7 | } |
|
| 42 | |||
| 57 |