| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 1 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function __construct( |
||
| 20 | private string $message = 'Value cannot be blank.', |
||
| 21 | |||
| 22 | ?FormatterInterface $formatter = null, |
||
| 23 | 17 | bool $skipOnEmpty = false, |
|
| 24 | bool $skipOnError = false, |
||
| 25 | 17 | $when = null |
|
| 26 | ) { |
||
| 27 | parent::__construct(formatter: $formatter, skipOnEmpty: $skipOnEmpty, skipOnError: $skipOnError, when: $when); |
||
| 28 | 13 | } |
|
| 48 |