| 1 | <?php |
||
| 18 | class FieldDescription extends BaseFieldDescription |
||
| 19 | { |
||
| 20 | public function setAssociationMapping($associationMapping): void |
||
| 21 | { |
||
| 22 | // TODO: Implement setAssociationMapping() method. |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getTargetEntity(): void |
||
| 26 | { |
||
| 27 | // TODO: Implement getTargetEntity() method. |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getTargetModel(): ?string |
||
| 31 | { |
||
| 32 | throw new \BadMethodCallException(sprintf('Implement %s() method.', __METHOD__); |
||
|
|
|||
| 33 | } |
||
| 34 | |||
| 35 | public function setFieldMapping($fieldMapping): void |
||
| 36 | { |
||
| 37 | // TODO: Implement setFieldMapping() method. |
||
| 38 | } |
||
| 39 | |||
| 40 | public function isIdentifier(): void |
||
| 41 | { |
||
| 42 | // TODO: Implement isIdentifier() method. |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * set the parent association mappings information. |
||
| 47 | * |
||
| 48 | * @param array $parentAssociationMappings |
||
| 49 | */ |
||
| 50 | public function setParentAssociationMappings(array $parentAssociationMappings): void |
||
| 51 | { |
||
| 52 | // TODO: Implement setParentAssociationMappings() method. |
||
| 53 | } |
||
| 54 | |||
| 55 | /** |
||
| 56 | * return the value linked to the description. |
||
| 57 | * |
||
| 58 | * @param $object |
||
| 59 | * |
||
| 60 | * @return bool|mixed |
||
| 61 | */ |
||
| 62 | public function getValue($object) |
||
| 67 |