Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
14 | class DumperFacade extends AbstractFacade implements DumperFacadeInterface |
||
15 | { |
||
16 | /** |
||
17 | * @return array |
||
18 | */ |
||
19 | public function getCommands(): array |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @param \DataProvider\DumperConfigDataProvider $configDataProvider |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | public function dump(DumperConfigDataProvider $configDataProvider): string |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @param \DataProvider\DumperConfigDataProvider $configDataProvider |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | public function restore(DumperConfigDataProvider $configDataProvider): string |
||
40 | { |
||
41 | return $this->getFactory()->createDumper($configDataProvider)->restore(); |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @param \DataProvider\DumperConfigDataProvider $configDataProvider |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | public function clear(DumperConfigDataProvider $configDataProvider): string |
||
52 | } |
||
53 | } |