| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 16 | class EntityEmbeddableSetter |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var CodeHelper |
||
| 20 | */ |
||
| 21 | protected $codeHelper; |
||
| 22 | |||
| 23 | 9 | public function __construct(CodeHelper $codeHelper) |
|
| 24 | { |
||
| 25 | 9 | $this->codeHelper = $codeHelper; |
|
| 26 | 9 | } |
|
| 27 | |||
| 28 | 8 | public function setEntityHasEmbeddable(string $entityFqn, string $embeddableTraitFqn) |
|
| 44 | 8 | } |
|
| 45 | } |
||
| 46 |