| 1 | <?php |
||
| 17 | class Installer implements QueryStoreInstaller { |
||
| 18 | |||
| 19 | private $logger; |
||
| 20 | private $schemaManager; |
||
| 21 | private $storeSchema; |
||
| 22 | |||
| 23 | public function __construct( LoggerInterface $logger, StoreSchema $storeSchema, AbstractSchemaManager $schemaManager ) { |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @see QueryStoreInstaller::install |
||
| 31 | * |
||
| 32 | * @throws QueryEngineException |
||
| 33 | */ |
||
| 34 | public function install() { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Sets up the tables of the store. |
||
| 42 | * |
||
| 43 | * @param Table $table |
||
| 44 | */ |
||
| 45 | private function setupTable( Table $table ) { |
||
| 53 | |||
| 54 | } |
||
| 55 |