1 | <?php |
||
9 | class MySqlDumper implements DumperInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var \Symfony\Component\Process\ProcessBuilder |
||
13 | */ |
||
14 | private $processBuilder; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $executable; |
||
20 | |||
21 | /** |
||
22 | * @param array $options |
||
23 | * @param int $timeout |
||
24 | * @param null|string $executable |
||
25 | * @param null|ProcessBuilder $processBuilder |
||
26 | */ |
||
27 | 3 | public function __construct( |
|
56 | |||
57 | /** |
||
58 | * @throws DatabaseException |
||
59 | * |
||
60 | * @return string |
||
61 | */ |
||
62 | 3 | public function dump() |
|
74 | } |
||
75 |