Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 1 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 11 | public function __construct( |
|
16 | /** |
||
17 | * @var callable |
||
18 | */ |
||
19 | private $callback, |
||
20 | ?FormatterInterface $formatter = null, |
||
21 | bool $skipOnEmpty = false, |
||
22 | bool $skipOnError = false, |
||
23 | $when = null |
||
24 | ) { |
||
25 | 11 | parent::__construct(formatter: $formatter, skipOnEmpty: $skipOnEmpty, skipOnError: $skipOnError, when: $when); |
|
26 | } |
||
49 |