123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- declare(strict_types=1);
- namespace OC\DB;
- class MissingIndexInformation {
- private $listOfMissingIndexes = [];
- public function addHintForMissingSubject(string $tableName, string $indexName) {
- $this->listOfMissingIndexes[] = [
- 'tableName' => $tableName,
- 'indexName' => $indexName
- ];
- }
- public function getListOfMissingIndexes(): array {
- return $this->listOfMissingIndexes;
- }
- }
|