1 | <?php |
||
18 | class Uninstaller implements QueryStoreUninstaller { |
||
19 | |||
20 | private $logger; |
||
21 | private $schemaManager; |
||
22 | private $storeSchema; |
||
23 | |||
24 | public function __construct( LoggerInterface $logger, StoreSchema $storeSchema, AbstractSchemaManager $schemaManager ) { |
||
29 | |||
30 | /** |
||
31 | * @see QueryStoreUninstaller::uninstall |
||
32 | * |
||
33 | * @throws QueryEngineException |
||
34 | */ |
||
35 | public function uninstall() { |
||
40 | |||
41 | /** |
||
42 | * Removes the tables belonging to the store. |
||
43 | * |
||
44 | * @param Table $table |
||
45 | */ |
||
46 | private function dropTable( Table $table ) { |
||
54 | |||
55 | } |
||
56 |