| 1 | <?php |
||
| 11 | abstract class BaseCommandHandler |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var EntityManagerInterface em |
||
| 15 | */ |
||
| 16 | protected $em; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var RecordsMessages eventRecorder |
||
| 20 | */ |
||
| 21 | protected $eventRecorder; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param RecordsMessages $eventRecorder |
||
| 25 | */ |
||
| 26 | public function setEventRecorder(RecordsMessages $eventRecorder) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param EntityManagerInterface $em |
||
| 33 | */ |
||
| 34 | public function setEntityManager(EntityManagerInterface $em) |
||
| 38 | } |
||
| 39 |