1 | <?php |
||
8 | class ReadViewModel extends ViewModel implements ReadViewModelInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var EntityInterface |
||
12 | */ |
||
13 | private $entity; |
||
14 | |||
15 | /** |
||
16 | * @return EntityInterface |
||
17 | */ |
||
18 | public function getEntity() |
||
22 | |||
23 | /** |
||
24 | * @param EntityInterface $entity |
||
25 | */ |
||
26 | public function setEntity(EntityInterface $entity) |
||
30 | } |
||
31 |