1 | <?php |
||
7 | class DoctrineFlusher implements FlushingInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var ManagerRegistry |
||
11 | */ |
||
12 | protected $doctrine; |
||
13 | |||
14 | /** |
||
15 | * @param ManagerRegistry $doctrine |
||
16 | */ |
||
17 | 2 | public function __construct(ManagerRegistry $doctrine) |
|
21 | |||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | 1 | public function flush() |
|
29 | } |
||
30 |