| Total Complexity | 10 |
| Total Lines | 59 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class MappedSuperClassMetadata extends ComponentMetadata |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string|null |
||
| 14 | */ |
||
| 15 | protected $customRepositoryClassName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var Property|null |
||
| 19 | */ |
||
| 20 | protected $declaredVersion; |
||
| 21 | |||
| 22 | public function getCustomRepositoryClassName() : ?string |
||
| 23 | { |
||
| 24 | return $this->customRepositoryClassName; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function setCustomRepositoryClassName(?string $customRepositoryClassName) : void |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getDeclaredVersion() : ?Property |
||
| 33 | { |
||
| 34 | return $this->declaredVersion; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function setDeclaredVersion(Property $property) : void |
||
| 38 | { |
||
| 39 | $this->declaredVersion = $property; |
||
| 40 | } |
||
| 41 | |||
| 42 | public function getVersion() : ?Property |
||
| 53 | } |
||
| 54 | |||
| 55 | public function isVersioned() : bool |
||
| 58 | } |
||
| 59 | |||
| 60 | /** |
||
| 61 | * {@inheritdoc} |
||
| 62 | */ |
||
| 63 | public function addDeclaredProperty(Property $property) : void |
||
| 72 |