1 | <?php |
||
15 | class DoctrinePersistActionExecutor extends BaseDoctrinePersistActionExecutor |
||
16 | { |
||
17 | /** |
||
18 | * @var Registry |
||
19 | */ |
||
20 | protected $registry; |
||
21 | |||
22 | /** |
||
23 | * @param Registry $registry |
||
24 | */ |
||
25 | 2 | public function __construct(Registry $registry) |
|
29 | |||
30 | /** |
||
31 | * @param string $name |
||
32 | * |
||
33 | * @return EntityManager |
||
34 | */ |
||
35 | 2 | public function getEntityManagerByName(string $name) : EntityManager |
|
39 | |||
40 | /** |
||
41 | * @inheritDoc |
||
42 | */ |
||
43 | 2 | public function execute(array $arguments) : array |
|
62 | } |
||
63 |