| 1 | <?php |
||
| 12 | abstract class TransformerWithEntityAbstract |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var EntityManagerInterface |
||
| 16 | */ |
||
| 17 | protected $entityManager; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param EntityManagerInterface $entityManager |
||
| 21 | */ |
||
| 22 | public function __construct(EntityManagerInterface $entityManager) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return EntityManagerInterface |
||
| 29 | */ |
||
| 30 | final public function getEntityManager() |
||
| 34 | } |
||
| 35 |