| Conditions | 2 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | 5 | public function __construct(DataFieldInterface $nextDataField, array $toBeDefinedTexts = ['Por definir']) |
|
| 19 | { |
||
| 20 | 5 | parent::__construct( |
|
| 21 | 5 | fn ($input) => $this->matchToBeDefined($input) ? '' : $input, |
|
| 22 | 5 | $nextDataField |
|
| 23 | 5 | ); |
|
| 24 | 5 | $this->toBeDefinedTexts = $toBeDefinedTexts; |
|
| 25 | } |
||
| 42 |