1 | <?php |
||
18 | final class EntityArgument implements ArgumentInterface |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $entityClass; |
||
25 | |||
26 | /** |
||
27 | * @var ArgumentInterface |
||
28 | */ |
||
29 | private $id; |
||
30 | |||
31 | /** |
||
32 | * @var ObjectManager |
||
33 | */ |
||
34 | private $objectManager; |
||
35 | |||
36 | public function __construct( |
||
45 | |||
46 | public function getValue() |
||
53 | |||
54 | } |
||
55 |