Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2021-09-11 20:38:44 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2021-09-11 20:38:44 +0300
commit00cb1b366841d88621f6383f1b99638145424b7e (patch)
tree9ae74410b33b0ec755ac706bc0e4d55c8b61a200 /libraries/services.php
parent3be84cf9b26b402b2ca18bbd4aa4ac5975757f44 (diff)
Extract `IndexesController::doSaveData` method
Creates the Table\Indexes class. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/services.php')
-rw-r--r--libraries/services.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/libraries/services.php b/libraries/services.php
index ddc6a7cc3e..3f3a39ec98 100644
--- a/libraries/services.php
+++ b/libraries/services.php
@@ -197,6 +197,10 @@ return [
'class' => PhpMyAdmin\Server\Status\Processes::class,
'arguments' => ['@dbi'],
],
+ 'table_indexes' => [
+ 'class' => PhpMyAdmin\Table\Indexes::class,
+ 'arguments' => ['$response' => '@response', '$template' => '@template', '$dbi' => '@dbi'],
+ ],
'table_maintenance' => [
'class' => PhpMyAdmin\Table\Maintenance::class,
'arguments' => ['$dbi' => '@dbi'],