1 | <?php |
||
10 | class EntityToIdTransformer implements TransformerInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var EntityManagerInterface |
||
14 | */ |
||
15 | protected $entityManager; |
||
16 | |||
17 | /** |
||
18 | * @param EntityManagerInterface $entityManager |
||
19 | */ |
||
20 | 6 | public function __construct(EntityManagerInterface $entityManager) |
|
24 | |||
25 | 6 | public function transform($value) |
|
47 | } |
||
48 |