| 1 | <?php |
||
| 18 | class AttachedEntityReference |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | * @ODM\String |
||
| 24 | */ |
||
| 25 | protected $repository; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | * @ODM\String |
||
| 30 | */ |
||
| 31 | protected $entityId; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getRepository() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param string $repository |
||
| 43 | * @return AttachedEntityReference |
||
| 44 | */ |
||
| 45 | public function setRepository($repository) |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function getEntityId() |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @param string $entityId |
||
| 61 | * @return AttachedEntityReference |
||
| 62 | */ |
||
| 63 | public function setEntityId($entityId) |
||
| 68 | } |
||
| 69 |