| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 43 | 1 | protected static function metaForFullNameEmbeddable(ClassMetadataBuilder $builder): void |
|
| 44 | { |
||
| 45 | 1 | $builder->createEmbedded(HasFullNameEmbeddableInterface::PROP_FULL_NAME, FullNameEmbeddable::class) |
|
| 46 | 1 | ->setColumnPrefix(HasFullNameEmbeddableInterface::COLUMN_PREFIX_FULL_NAME) |
|
| 47 | 1 | ->build(); |
|
| 48 | 1 | } |
|
| 50 |