| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 1 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 5 | public function __construct( |
|
| 19 | protected string $message = 'This value is not a valid.', |
||
| 20 | ?FormatterInterface $formatter = null, |
||
| 21 | bool $skipOnEmpty = false, |
||
| 22 | bool $skipOnError = false, |
||
| 23 | $when = null |
||
| 24 | ) { |
||
| 25 | 5 | parent::__construct(formatter: $formatter, skipOnEmpty: $skipOnEmpty, skipOnError: $skipOnError, when: $when); |
|
| 26 | } |
||
| 48 |