Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| CustomFieldsYaml | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php declare(strict_types=1); |
| 2 | |
| 3 | namespace Satag\AmicronEntityBundle\Util\CustomFields; |
| 4 | |
| 5 | class CustomFieldsYaml extends AbstractCustomFields |
| 6 | { |
| 7 | public function __construct(object $entity, string $fieldName, string $dataIdentifier, bool $old = false) |
| 8 | { |
| 9 | parent::__construct($entity, $fieldName, $dataIdentifier); |
| 10 | $this->setEncoder(new CustomFieldsEncoderYaml($dataIdentifier, $old)); |
| 11 | } |
| 12 | } |