From 64f68ff92d60c45a84156bbae9dc2883354d69bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Tue, 6 Jan 2026 19:57:31 -0300 Subject: [PATCH] Remove argument names from services declaration files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MaurĂ­cio Meneghini Fauth --- app/services.php | 62 +- app/services_controllers.php | 1100 +++++++++++++++++----------------- 2 files changed, 581 insertions(+), 581 deletions(-) diff --git a/app/services.php b/app/services.php index 43aefd02d0..6e374363e9 100644 --- a/app/services.php +++ b/app/services.php @@ -70,7 +70,7 @@ return [ 'services' => [ 'advisor' => [ 'class' => Advisor::class, - 'arguments' => ['$dbi' => '@dbi', '$expression' => '@expression_language'], + 'arguments' => ['@dbi', '@expression_language'], ], Application::class => ['class' => Application::class, 'arguments' => ['@' . ResponseFactory::class]], 'browse_foreigners' => [ @@ -84,21 +84,21 @@ return [ 'dbi' => [ 'class' => DatabaseInterface::class, 'factory' => [DatabaseInterface::class, 'getInstance'], - 'arguments' => ['$config' => '@config'], + 'arguments' => ['@config'], ], DbTableExists::class => ['class' => DbTableExists::class, 'arguments' => ['@dbi']], 'designer' => [ 'class' => Designer::class, 'arguments' => [ - '$dbi' => '@dbi', - '$relation' => '@relation', - '$template' => '@template', - '$config' => '@config', + '@dbi', + '@relation', + '@template', + '@config', ], ], 'designer_common' => [ 'class' => Common::class, - 'arguments' => ['$dbi' => '@dbi', '$relation' => '@relation', '$config' => '@config'], + 'arguments' => ['@dbi', '@relation', '@config'], ], 'error_handler' => ['class' => ErrorHandler::class, 'factory' => [ErrorHandler::class, 'getInstance']], 'error_report' => [ @@ -244,29 +244,29 @@ return [ 'normalization' => [ 'class' => Normalization::class, 'arguments' => [ - '$dbi' => '@dbi', - '$relation' => '@relation', - '$transformations' => '@transformations', - '$template' => '@template', + '@dbi', + '@relation', + '@transformations', + '@template', ], ], 'operations' => [ 'class' => Operations::class, - 'arguments' => ['$dbi' => '@dbi', '$relation' => '@relation', '$tableMover' => '@table_mover'], + 'arguments' => ['@dbi', '@relation', '@table_mover'], ], OutputHandler::class => ['class' => OutputHandler::class], 'partitioning_maintenance' => [ 'class' => Maintenance::class, - 'arguments' => ['$dbi' => '@dbi'], + 'arguments' => ['@dbi'], ], AuthenticationPluginFactory::class => ['class' => AuthenticationPluginFactory::class], - Relation::class => ['class' => Relation::class, 'arguments' => ['$dbi' => '@dbi', '$config' => '@config']], + Relation::class => ['class' => Relation::class, 'arguments' => ['@dbi', '@config']], 'relation' => Relation::class, 'relation_cleanup' => ['class' => RelationCleanup::class, 'arguments' => ['@dbi', '@relation']], - 'replication' => ['class' => Replication::class, 'arguments' => ['$dbi' => '@dbi']], + 'replication' => ['class' => Replication::class, 'arguments' => ['@dbi']], 'replication_gui' => [ 'class' => ReplicationGui::class, - 'arguments' => ['$replication' => '@replication', '$template' => '@template'], + 'arguments' => ['@replication', '@template'], ], 'response' => [ 'class' => ResponseRenderer::class, @@ -297,9 +297,9 @@ return [ 'sql_query_form' => [ 'class' => SqlQueryForm::class, 'arguments' => [ - '$template' => '@template', - '$dbi' => '@dbi', - '$bookmarkRepository' => '@bookmarkRepository', + '@template', + '@dbi', + '@bookmarkRepository', ], ], 'status_data' => ['class' => Data::class, 'arguments' => ['@dbi','@config']], @@ -307,30 +307,30 @@ return [ 'status_processes' => ['class' => Processes::class, 'arguments' => ['@dbi']], 'table_columns_definition' => [ 'class' => ColumnsDefinition::class, - 'arguments' => ['$dbi' => '@dbi', '$relation' => '@relation', '$transformations' => '@transformations'], + 'arguments' => ['@dbi', '@relation', '@transformations'], ], 'table_indexes' => [ 'class' => Indexes::class, - 'arguments' => ['$dbi' => '@dbi'], + 'arguments' => ['@dbi'], ], - 'table_maintenance' => ['class' => \PhpMyAdmin\Table\Maintenance::class, 'arguments' => ['$dbi' => '@dbi']], - 'table_search' => ['class' => Search::class, 'arguments' => ['$dbi' => '@dbi']], - Template::class => ['class' => Template::class, 'arguments' => ['$config' => '@config']], + 'table_maintenance' => ['class' => \PhpMyAdmin\Table\Maintenance::class, 'arguments' => ['@dbi']], + 'table_search' => ['class' => Search::class, 'arguments' => ['@dbi']], + Template::class => ['class' => Template::class, 'arguments' => ['@config']], 'template' => Template::class, ThemeManager::class => ['class' => ThemeManager::class], 'tracking' => [ 'class' => Tracking::class, 'arguments' => [ - '$sqlQueryForm' => '@sql_query_form', - '$template' => '@template', - '$relation' => '@relation', - '$dbi' => '@dbi', - '$trackingChecker' => '@tracking_checker', + '@sql_query_form', + '@template', + '@relation', + '@dbi', + '@tracking_checker', ], ], 'tracking_checker' => [ 'class' => TrackingChecker::class, - 'arguments' => ['$dbi' => '@dbi', '$relation' => '@relation'], + 'arguments' => ['@dbi', '@relation'], ], Transformations::class => ['class' => Transformations::class, 'arguments' => ['@dbi', '@relation']], 'transformations' => Transformations::class, @@ -352,7 +352,7 @@ return [ 'table_mover' => ['class' => TableMover::class, 'arguments' => ['@dbi', '@relation']], 'history' => [ 'class' => History::class, - 'arguments' => ['$dbi' => '@dbi', '$relation' => '@relation', '$config' => '@config'], + 'arguments' => ['@dbi', '@relation', '@config'], ], ], ]; diff --git a/app/services_controllers.php b/app/services_controllers.php index 66e425d775..2c5122adbb 100644 --- a/app/services_controllers.php +++ b/app/services_controllers.php @@ -53,9 +53,9 @@ return [ BrowseForeignersController::class => [ 'class' => BrowseForeignersController::class, 'arguments' => [ - '$response' => '@response', - '$browseForeigners' => '@browse_foreigners', - '$relation' => '@relation', + '@response', + '@browse_foreigners', + '@relation', ], ], ChangeLogController::class => [ @@ -64,178 +64,178 @@ return [ ], CheckRelationsController::class => [ 'class' => CheckRelationsController::class, - 'arguments' => ['$response' => '@response', '$relation' => '@relation', '$config' => '@config'], + 'arguments' => ['@response', '@relation', '@config'], ], CollationConnectionController::class => [ 'class' => CollationConnectionController::class, - 'arguments' => ['$response' => '@response', '$config' => '@config'], + 'arguments' => ['@response', '@config'], ], ColumnController::class => [ 'class' => ColumnController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], UpdateNavWidthConfigController::class => [ 'class' => UpdateNavWidthConfigController::class, - 'arguments' => ['$response' => '@response', '$config' => '@config'], + 'arguments' => ['@response', '@config'], ], Console\Bookmark\AddController::class => [ 'class' => Console\Bookmark\AddController::class, 'arguments' => [ - '$response' => '@response', - '$bookmarkRepository' => '@bookmarkRepository', - '$config' => '@config', + '@response', + '@bookmarkRepository', + '@config', ], ], Console\Bookmark\RefreshController::class => [ 'class' => Console\Bookmark\RefreshController::class, - 'arguments' => ['$response' => '@response', '$console' => '@' . \PhpMyAdmin\Console\Console::class], + 'arguments' => ['@response', '@' . \PhpMyAdmin\Console\Console::class], ], Console\UpdateConfigController::class => [ 'class' => Console\UpdateConfigController::class, - 'arguments' => ['$response' => '@response', '$config' => '@config'], + 'arguments' => ['@response', '@config'], ], Database\CentralColumns\PopulateColumnsController::class => [ 'class' => Database\CentralColumns\PopulateColumnsController::class, - 'arguments' => ['$response' => '@response', '$centralColumns' => '@central_columns'], + 'arguments' => ['@response', '@central_columns'], ], Database\CentralColumnsController::class => [ 'class' => Database\CentralColumnsController::class, 'arguments' => [ - '$response' => '@response', - '$centralColumns' => '@central_columns', - '$config' => '@config', + '@response', + '@central_columns', + '@config', ], ], Database\DataDictionaryController::class => [ 'class' => Database\DataDictionaryController::class, 'arguments' => [ - '$response' => '@response', - '$relation' => '@relation', - '$transformations' => '@transformations', - '$dbi' => '@dbi', + '@response', + '@relation', + '@transformations', + '@dbi', ], ], Database\DesignerController::class => [ 'class' => Database\DesignerController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$databaseDesigner' => '@designer', - '$designerCommon' => '@designer_common', - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@template', + '@designer', + '@designer_common', + '@' . DbTableExists::class, ], ], Database\EventsController::class => [ 'class' => Database\EventsController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$events' => '@events', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@template', + '@events', + '@dbi', + '@' . DbTableExists::class, ], ], Database\ExportController::class => [ 'class' => Database\ExportController::class, 'arguments' => [ - '$response' => '@response', - '$export' => '@export', - '$exportOptions' => '@export_options', - '$pageSettings' => '@' . PageSettings::class, - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@export', + '@export_options', + '@' . PageSettings::class, + '@' . DbTableExists::class, ], ], Database\ImportController::class => [ 'class' => Database\ImportController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$pageSettings' => '@' . PageSettings::class, - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@dbi', + '@' . PageSettings::class, + '@' . DbTableExists::class, + '@config', ], ], Database\MultiTableQuery\QueryController::class => [ 'class' => Database\MultiTableQuery\QueryController::class, - 'arguments' => ['$response' => '@response', '$sql' => '@sql'], + 'arguments' => ['@response', '@sql'], ], Database\MultiTableQuery\TablesController::class => [ 'class' => Database\MultiTableQuery\TablesController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], Database\MultiTableQueryController::class => [ 'class' => Database\MultiTableQueryController::class, - 'arguments' => ['$response' => '@response', '$template' => '@template', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@template', '@dbi'], ], Operations\Database\CollationController::class => [ 'class' => Operations\Database\CollationController::class, 'arguments' => [ - '$response' => '@response', - '$operations' => '@operations', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@operations', + '@dbi', + '@' . DbTableExists::class, ], ], Operations\DatabaseController::class => [ 'class' => Operations\DatabaseController::class, 'arguments' => [ - '$response' => '@response', - '$operations' => '@operations', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, - '$relation' => '@relation', - '$relationCleanup' => '@relation_cleanup', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@operations', + '@' . UserPrivilegesFactory::class, + '@relation', + '@relation_cleanup', + '@dbi', + '@' . DbTableExists::class, + '@config', ], ], Database\PrivilegesController::class => [ 'class' => Database\PrivilegesController::class, 'arguments' => [ - '$response' => '@response', - '$privileges' => '@server_privileges', - '$dbi' => '@dbi', - '$config' => '@config', + '@response', + '@server_privileges', + '@dbi', + '@config', ], ], Database\RoutinesController::class => [ 'class' => Database\RoutinesController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, - '$dbi' => '@dbi', - '$routines' => '@routines', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@' . UserPrivilegesFactory::class, + '@dbi', + '@routines', + '@' . DbTableExists::class, + '@config', ], ], Database\SearchController::class => [ 'class' => Database\SearchController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@dbi', + '@' . DbTableExists::class, + '@config', ], ], Database\SqlAutoCompleteController::class => [ 'class' => Database\SqlAutoCompleteController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi', '$config' => '@config'], + 'arguments' => ['@response', '@dbi', '@config'], ], Database\SqlController::class => [ 'class' => Database\SqlController::class, 'arguments' => [ - '$response' => '@response', - '$sqlQueryForm' => '@sql_query_form', - '$pageSettings' => '@' . PageSettings::class, - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@sql_query_form', + '@' . PageSettings::class, + '@' . DbTableExists::class, ], ], Database\SqlFormatController::class => [ 'class' => Database\SqlFormatController::class, - 'arguments' => ['$response' => '@response'], + 'arguments' => ['@response'], ], Database\Structure\AddPrefixController::class => [ 'class' => Database\Structure\AddPrefixController::class, @@ -243,30 +243,30 @@ return [ ], Database\Structure\AddPrefixTableController::class => [ 'class' => Database\Structure\AddPrefixTableController::class, - 'arguments' => ['$dbi' => '@dbi', '$structureController' => '@' . Database\StructureController::class], + 'arguments' => ['@dbi', '@' . Database\StructureController::class], ], Database\Structure\CentralColumns\AddController::class => [ 'class' => Database\Structure\CentralColumns\AddController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$structureController' => '@' . Database\StructureController::class, + '@response', + '@dbi', + '@' . Database\StructureController::class, ], ], Database\Structure\CentralColumns\MakeConsistentController::class => [ 'class' => Database\Structure\CentralColumns\MakeConsistentController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$structureController' => '@' . Database\StructureController::class, + '@response', + '@dbi', + '@' . Database\StructureController::class, ], ], Database\Structure\CentralColumns\RemoveController::class => [ 'class' => Database\Structure\CentralColumns\RemoveController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$structureController' => '@' . Database\StructureController::class, + '@response', + '@dbi', + '@' . Database\StructureController::class, ], ], Database\Structure\ChangePrefixFormController::class => [ @@ -280,60 +280,60 @@ return [ Database\Structure\CopyTableController::class => [ 'class' => Database\Structure\CopyTableController::class, 'arguments' => [ - '$operations' => '@operations', - '$structureController' => '@' . Database\StructureController::class, - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, - '$tableMover' => '@table_mover', + '@operations', + '@' . Database\StructureController::class, + '@' . UserPrivilegesFactory::class, + '@table_mover', ], ], Database\Structure\CopyTableWithPrefixController::class => [ 'class' => Database\Structure\CopyTableWithPrefixController::class, 'arguments' => [ - '$structureController' => '@' . Database\StructureController::class, - '$tableMover' => '@table_mover', + '@' . Database\StructureController::class, + '@table_mover', ], ], Database\Structure\DropFormController::class => [ 'class' => Database\Structure\DropFormController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], Database\Structure\DropTableController::class => [ 'class' => Database\Structure\DropTableController::class, 'arguments' => [ - '$dbi' => '@dbi', - '$relationCleanup' => '@relation_cleanup', - '$structureController' => '@' . Database\StructureController::class, + '@dbi', + '@relation_cleanup', + '@' . Database\StructureController::class, ], ], Database\Structure\EmptyFormController::class => [ 'class' => Database\Structure\EmptyFormController::class, - 'arguments' => ['$response' => '@response'], + 'arguments' => ['@response'], ], Database\Structure\EmptyTableController::class => [ 'class' => Database\Structure\EmptyTableController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$flashMessenger' => '@' . FlashMessenger::class, - '$structureController' => '@' . Database\StructureController::class, - '$sql' => '@sql', + '@response', + '@dbi', + '@' . FlashMessenger::class, + '@' . Database\StructureController::class, + '@sql', ], ], Database\Structure\FavoriteTableController::class => [ 'class' => Database\Structure\FavoriteTableController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@' . DbTableExists::class, + '@config', ], ], Database\Structure\RealRowCountController::class => [ 'class' => Database\Structure\RealRowCountController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@dbi', + '@' . DbTableExists::class, ], ], Database\Structure\ReplacePrefixController::class => [ @@ -342,50 +342,50 @@ return [ ], Database\Structure\ShowCreateController::class => [ 'class' => Database\Structure\ShowCreateController::class, - 'arguments' => ['$response' => '@response', '$template' => '@template', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@template', '@dbi'], ], Database\StructureController::class => [ 'class' => Database\StructureController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$relation' => '@relation', - '$replication' => '@replication', - '$dbi' => '@dbi', - '$trackingChecker' => '@tracking_checker', - '$pageSettings' => '@' . PageSettings::class, - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@relation', + '@replication', + '@dbi', + '@tracking_checker', + '@' . PageSettings::class, + '@' . DbTableExists::class, + '@config', ], ], Database\TrackingController::class => [ 'class' => Database\TrackingController::class, 'arguments' => [ - '$response' => '@response', - '$tracking' => '@tracking', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@tracking', + '@dbi', + '@' . DbTableExists::class, + '@config', ], ], DatabaseController::class => [ 'class' => DatabaseController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], ErrorReportController::class => [ 'class' => ErrorReportController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$errorReport' => '@error_report', - '$errorHandler' => '@error_handler', - '$dbi' => '@dbi', - '$config' => '@config', + '@response', + '@template', + '@error_report', + '@error_handler', + '@dbi', + '@config', ], ], Export\CheckTimeOutController::class => [ 'class' => Export\CheckTimeOutController::class, - 'arguments' => ['$response' => '@response'], + 'arguments' => ['@response'], ], Export\ExportController::class => [ 'class' => Export\ExportController::class, @@ -394,83 +394,83 @@ return [ Export\TablesController::class => [ 'class' => Export\TablesController::class, 'arguments' => [ - '$response' => '@response', - '$exportController' => '@' . Database\ExportController::class, + '@response', + '@' . Database\ExportController::class, ], ], Export\Template\CreateController::class => [ 'class' => Export\Template\CreateController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$model' => '@export_template_model', - '$relation' => '@relation', - '$config' => '@config', + '@response', + '@template', + '@export_template_model', + '@relation', + '@config', ], ], Export\Template\DeleteController::class => [ 'class' => Export\Template\DeleteController::class, 'arguments' => [ - '$response' => '@response', - '$model' => '@export_template_model', - '$relation' => '@relation', - '$config' => '@config', + '@response', + '@export_template_model', + '@relation', + '@config', ], ], Export\Template\LoadController::class => [ 'class' => Export\Template\LoadController::class, 'arguments' => [ - '$response' => '@response', - '$model' => '@export_template_model', - '$relation' => '@relation', - '$config' => '@config', + '@response', + '@export_template_model', + '@relation', + '@config', ], ], Export\Template\UpdateController::class => [ 'class' => Export\Template\UpdateController::class, 'arguments' => [ - '$response' => '@response', - '$model' => '@export_template_model', - '$relation' => '@relation', - '$config' => '@config', + '@response', + '@export_template_model', + '@relation', + '@config', ], ], GisDataEditorController::class => [ 'class' => GisDataEditorController::class, - 'arguments' => ['$response' => '@response', '$template' => '@template'], + 'arguments' => ['@response', '@template'], ], GitInfoController::class => [ 'class' => GitInfoController::class, - 'arguments' => ['$response' => '@response', '$config' => '@config'], + 'arguments' => ['@response', '@config'], ], HomeController::class => [ 'class' => HomeController::class, 'arguments' => [ - '$response' => '@response', - '$config' => '@config', - '$themeManager' => '@' . ThemeManager::class, - '$dbi' => '@dbi', - '$responseFactory' => '@' . ResponseFactory::class, + '@response', + '@config', + '@' . ThemeManager::class, + '@dbi', + '@' . ResponseFactory::class, ], ], Import\ImportController::class => [ 'class' => Import\ImportController::class, 'arguments' => [ - '$response' => '@response', - '$import' => '@import', - '$sql' => '@sql', - '$dbi' => '@dbi', - '$bookmarkRepository' => '@bookmarkRepository', - '$config' => '@config', + '@response', + '@import', + '@sql', + '@dbi', + '@bookmarkRepository', + '@config', ], ], Import\SimulateDmlController::class => [ 'class' => Import\SimulateDmlController::class, - 'arguments' => ['$response' => '@response', '$simulateDml' => '@import_simulate_dml'], + 'arguments' => ['@response', '@import_simulate_dml'], ], Import\StatusController::class => [ 'class' => Import\StatusController::class, - 'arguments' => ['$template' => '@template'], + 'arguments' => ['@template'], ], JavaScriptMessagesController::class => [ 'class' => JavaScriptMessagesController::class, @@ -488,83 +488,83 @@ return [ NavigationController::class => [ 'class' => NavigationController::class, 'arguments' => [ - '$response' => '@response', - '$navigation' => '@navigation', - '$relation' => '@relation', - '$pageSettings' => '@' . PageSettings::class, + '@response', + '@navigation', + '@relation', + '@' . PageSettings::class, ], ], Normalization\FirstNormalForm\FirstStepController::class => [ 'class' => Normalization\FirstNormalForm\FirstStepController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\FirstNormalForm\FourthStepController::class => [ 'class' => Normalization\FirstNormalForm\FourthStepController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\FirstNormalForm\SecondStepController::class => [ 'class' => Normalization\FirstNormalForm\SecondStepController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\FirstNormalForm\ThirdStepController::class => [ 'class' => Normalization\FirstNormalForm\ThirdStepController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\SecondNormalForm\CreateNewTablesController::class => [ 'class' => Normalization\SecondNormalForm\CreateNewTablesController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\SecondNormalForm\FirstStepController::class => [ 'class' => Normalization\SecondNormalForm\FirstStepController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\SecondNormalForm\NewTablesController::class => [ 'class' => Normalization\SecondNormalForm\NewTablesController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\ThirdNormalForm\CreateNewTablesController::class => [ 'class' => Normalization\ThirdNormalForm\CreateNewTablesController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\ThirdNormalForm\FirstStepController::class => [ 'class' => Normalization\ThirdNormalForm\FirstStepController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\ThirdNormalForm\NewTablesController::class => [ 'class' => Normalization\ThirdNormalForm\NewTablesController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\AddNewPrimaryController::class => [ 'class' => Normalization\AddNewPrimaryController::class, 'arguments' => [ - '$response' => '@response', - '$normalization' => '@normalization', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, + '@response', + '@normalization', + '@' . UserPrivilegesFactory::class, ], ], Normalization\CreateNewColumnController::class => [ 'class' => Normalization\CreateNewColumnController::class, 'arguments' => [ - '$response' => '@response', - '$normalization' => '@normalization', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, + '@response', + '@normalization', + '@' . UserPrivilegesFactory::class, ], ], Normalization\GetColumnsController::class => [ 'class' => Normalization\GetColumnsController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\MainController::class => [ 'class' => Normalization\MainController::class, - 'arguments' => ['$response' => '@response'], + 'arguments' => ['@response'], ], Normalization\MoveRepeatingGroup::class => [ 'class' => Normalization\MoveRepeatingGroup::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], Normalization\PartialDependenciesController::class => [ 'class' => Normalization\PartialDependenciesController::class, - 'arguments' => ['$response' => '@response', '$normalization' => '@normalization'], + 'arguments' => ['@response', '@normalization'], ], PhpInfoController::class => [ 'class' => PhpInfoController::class, @@ -573,77 +573,77 @@ return [ Preferences\ExportController::class => [ 'class' => Preferences\ExportController::class, 'arguments' => [ - '$response' => '@response', - '$userPreferences' => '@user_preferences', - '$relation' => '@relation', - '$config' => '@config', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@response', + '@user_preferences', + '@relation', + '@config', + '@' . PhpMyAdmin\Theme\ThemeManager::class, ], ], Preferences\FeaturesController::class => [ 'class' => Preferences\FeaturesController::class, 'arguments' => [ - '$response' => '@response', - '$userPreferences' => '@user_preferences', - '$relation' => '@relation', - '$config' => '@config', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@response', + '@user_preferences', + '@relation', + '@config', + '@' . PhpMyAdmin\Theme\ThemeManager::class, ], ], Preferences\ImportController::class => [ 'class' => Preferences\ImportController::class, 'arguments' => [ - '$response' => '@response', - '$userPreferences' => '@user_preferences', - '$relation' => '@relation', - '$config' => '@config', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@response', + '@user_preferences', + '@relation', + '@config', + '@' . PhpMyAdmin\Theme\ThemeManager::class, ], ], Preferences\MainPanelController::class => [ 'class' => Preferences\MainPanelController::class, 'arguments' => [ - '$response' => '@response', - '$userPreferences' => '@user_preferences', - '$relation' => '@relation', - '$config' => '@config', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@response', + '@user_preferences', + '@relation', + '@config', + '@' . PhpMyAdmin\Theme\ThemeManager::class, ], ], Preferences\ManageController::class => [ 'class' => Preferences\ManageController::class, 'arguments' => [ - '$response' => '@response', - '$userPreferences' => '@user_preferences', - '$relation' => '@relation', - '$config' => '@config', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, - '$responseFactory' => '@' . ResponseFactory::class, + '@response', + '@user_preferences', + '@relation', + '@config', + '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@' . ResponseFactory::class, ], ], Preferences\NavigationController::class => [ 'class' => Preferences\NavigationController::class, 'arguments' => [ - '$response' => '@response', - '$userPreferences' => '@user_preferences', - '$relation' => '@relation', - '$config' => '@config', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@response', + '@user_preferences', + '@relation', + '@config', + '@' . PhpMyAdmin\Theme\ThemeManager::class, ], ], Preferences\SqlController::class => [ 'class' => Preferences\SqlController::class, 'arguments' => [ - '$response' => '@response', - '$userPreferences' => '@user_preferences', - '$relation' => '@relation', - '$config' => '@config', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@response', + '@user_preferences', + '@relation', + '@config', + '@' . PhpMyAdmin\Theme\ThemeManager::class, ], ], Preferences\TwoFactorController::class => [ 'class' => Preferences\TwoFactorController::class, - 'arguments' => ['$response' => '@response', '$relation' => '@relation', '$config' => '@config'], + 'arguments' => ['@response', '@relation', '@config'], ], SchemaExportController::class => [ 'class' => SchemaExportController::class, @@ -651,250 +651,250 @@ return [ ], Server\BinlogController::class => [ 'class' => Server\BinlogController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi', '$config' => '@config'], + 'arguments' => ['@response', '@dbi', '@config'], ], Server\CollationsController::class => [ 'class' => Server\CollationsController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi', '$config' => '@config'], + 'arguments' => ['@response', '@dbi', '@config'], ], Server\Databases\CreateController::class => [ 'class' => Server\Databases\CreateController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi', '$config' => '@config'], + 'arguments' => ['@response', '@dbi', '@config'], ], Server\Databases\DestroyController::class => [ 'class' => Server\Databases\DestroyController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$transformations' => '@transformations', - '$relationCleanup' => '@relation_cleanup', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, - '$config' => '@config', + '@response', + '@dbi', + '@transformations', + '@relation_cleanup', + '@' . UserPrivilegesFactory::class, + '@config', ], ], Server\DatabasesController::class => [ 'class' => Server\DatabasesController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, - '$config' => '@config', + '@response', + '@dbi', + '@' . UserPrivilegesFactory::class, + '@config', ], ], Server\EnginesController::class => [ 'class' => Server\EnginesController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], Server\ExportController::class => [ 'class' => Server\ExportController::class, 'arguments' => [ - '$response' => '@response', - '$export' => '@export_options', - '$dbi' => '@dbi', - '$pageSettings' => '@' . PageSettings::class, + '@response', + '@export_options', + '@dbi', + '@' . PageSettings::class, ], ], Server\ImportController::class => [ 'class' => Server\ImportController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$pageSettings' => '@' . PageSettings::class, - '$config' => '@config', + '@response', + '@dbi', + '@' . PageSettings::class, + '@config', ], ], Server\PluginsController::class => [ 'class' => Server\PluginsController::class, 'arguments' => [ - '$response' => '@response', - '$plugins' => '@server_plugins', - '$dbi' => '@dbi', + '@response', + '@server_plugins', + '@dbi', ], ], Server\Privileges\AccountLockController::class => [ 'class' => Server\Privileges\AccountLockController::class, - 'arguments' => ['$response' => '@response', '$accountLocking' => '@server_privileges_account_locking'], + 'arguments' => ['@response', '@server_privileges_account_locking'], ], Server\Privileges\AccountUnlockController::class => [ 'class' => Server\Privileges\AccountUnlockController::class, - 'arguments' => ['$response' => '@response', '$accountLocking' => '@server_privileges_account_locking'], + 'arguments' => ['@response', '@server_privileges_account_locking'], ], Server\PrivilegesController::class => [ 'class' => Server\PrivilegesController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$relation' => '@relation', - '$dbi' => '@dbi', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, - '$config' => '@config', + '@response', + '@template', + '@relation', + '@dbi', + '@' . UserPrivilegesFactory::class, + '@config', ], ], Server\ReplicationController::class => [ 'class' => Server\ReplicationController::class, - 'arguments' => ['$response' => '@response', '$replicationGui' => '@replication_gui', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@replication_gui', '@dbi'], ], Server\ShowEngineController::class => [ 'class' => Server\ShowEngineController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], Server\SqlController::class => [ 'class' => Server\SqlController::class, 'arguments' => [ - '$response' => '@response', - '$sqlQueryForm' => '@sql_query_form', - '$dbi' => '@dbi', - '$pageSettings' => '@' . PageSettings::class, + '@response', + '@sql_query_form', + '@dbi', + '@' . PageSettings::class, ], ], Server\UserGroupsController::class => [ 'class' => Server\UserGroupsController::class, - 'arguments' => ['$response' => '@response', '$relation' => '@relation', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@relation', '@dbi'], ], Server\UserGroupsFormController::class => [ 'class' => Server\UserGroupsFormController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$relation' => '@relation', - '$dbi' => '@dbi', + '@response', + '@template', + '@relation', + '@dbi', ], ], Server\Status\AdvisorController::class => [ 'class' => Server\Status\AdvisorController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$advisor' => '@advisor', + '@response', + '@template', + '@status_data', + '@advisor', ], ], Server\Status\Monitor\ChartingDataController::class => [ 'class' => Server\Status\Monitor\ChartingDataController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$monitor' => '@status_monitor', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@status_monitor', + '@dbi', ], ], Server\Status\Monitor\GeneralLogController::class => [ 'class' => Server\Status\Monitor\GeneralLogController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$monitor' => '@status_monitor', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@status_monitor', + '@dbi', ], ], Server\Status\Monitor\LogVarsController::class => [ 'class' => Server\Status\Monitor\LogVarsController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$monitor' => '@status_monitor', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@status_monitor', + '@dbi', ], ], Server\Status\Monitor\QueryAnalyzerController::class => [ 'class' => Server\Status\Monitor\QueryAnalyzerController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$monitor' => '@status_monitor', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@status_monitor', + '@dbi', ], ], Server\Status\Monitor\SlowLogController::class => [ 'class' => Server\Status\Monitor\SlowLogController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$monitor' => '@status_monitor', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@status_monitor', + '@dbi', ], ], Server\Status\MonitorController::class => [ 'class' => Server\Status\MonitorController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@dbi', ], ], Server\Status\Processes\KillController::class => [ 'class' => Server\Status\Processes\KillController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@dbi', ], ], Server\Status\Processes\RefreshController::class => [ 'class' => Server\Status\Processes\RefreshController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$processes' => '@status_processes', + '@response', + '@template', + '@status_data', + '@status_processes', ], ], Server\Status\ProcessesController::class => [ 'class' => Server\Status\ProcessesController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$dbi' => '@dbi', - '$processes' => '@status_processes', + '@response', + '@template', + '@status_data', + '@dbi', + '@status_processes', ], ], Server\Status\QueriesController::class => [ 'class' => Server\Status\QueriesController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@dbi', ], ], Server\Status\StatusController::class => [ 'class' => Server\Status\StatusController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$replicationGui' => '@replication_gui', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@replication_gui', + '@dbi', ], ], Server\Status\VariablesController::class => [ 'class' => Server\Status\VariablesController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$data' => '@status_data', - '$dbi' => '@dbi', + '@response', + '@template', + '@status_data', + '@dbi', ], ], Server\Variables\GetVariableController::class => [ 'class' => Server\Variables\GetVariableController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], Server\Variables\SetVariableController::class => [ 'class' => Server\Variables\SetVariableController::class, - 'arguments' => ['$response' => '@response', '$template' => '@template', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@template', '@dbi'], ], Server\VariablesController::class => [ 'class' => Server\VariablesController::class, - 'arguments' => ['$response' => '@response', '$template' => '@template', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@template', '@dbi'], ], Setup\MainController::class => [ 'class' => Setup\MainController::class, @@ -910,126 +910,126 @@ return [ ], Sql\ColumnPreferencesController::class => [ 'class' => Sql\ColumnPreferencesController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], Sql\DefaultForeignKeyCheckValueController::class => [ 'class' => Sql\DefaultForeignKeyCheckValueController::class, - 'arguments' => ['$response' => '@response'], + 'arguments' => ['@response'], ], Sql\EnumValuesController::class => [ 'class' => Sql\EnumValuesController::class, - 'arguments' => ['$response' => '@response', '$template' => '@template', '$sql' => '@sql'], + 'arguments' => ['@response', '@template', '@sql'], ], Sql\RelationalValuesController::class => [ 'class' => Sql\RelationalValuesController::class, - 'arguments' => ['$response' => '@response', '$sql' => '@sql'], + 'arguments' => ['@response', '@sql'], ], Sql\SetValuesController::class => [ 'class' => Sql\SetValuesController::class, - 'arguments' => ['$response' => '@response', '$template' => '@template', '$sql' => '@sql'], + 'arguments' => ['@response', '@template', '@sql'], ], Sql\SqlController::class => [ 'class' => Sql\SqlController::class, 'arguments' => [ - '$response' => '@response', - '$sql' => '@sql', - '$pageSettings' => '@' . PageSettings::class, - '$bookmarkRepository' => '@bookmarkRepository', - '$config' => '@config', + '@response', + '@sql', + '@' . PageSettings::class, + '@bookmarkRepository', + '@config', ], ], Table\AddFieldController::class => [ 'class' => Table\AddFieldController::class, 'arguments' => [ - '$response' => '@response', - '$transformations' => '@transformations', - '$config' => '@config', - '$dbi' => '@dbi', - '$columnsDefinition' => '@table_columns_definition', - '$dbTableExists' => '@' . DbTableExists::class, - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, + '@response', + '@transformations', + '@config', + '@dbi', + '@table_columns_definition', + '@' . DbTableExists::class, + '@' . UserPrivilegesFactory::class, ], ], Table\ChangeController::class => [ 'class' => Table\ChangeController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$insertEdit' => '@insert_edit', - '$relation' => '@relation', - '$pageSettings' => '@' . PageSettings::class, - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@insert_edit', + '@relation', + '@' . PageSettings::class, + '@' . DbTableExists::class, + '@config', ], ], Table\ChangeRowsController::class => [ 'class' => Table\ChangeRowsController::class, 'arguments' => [ - '$response' => '@response', - '$changeController' => '@' . Table\ChangeController::class, + '@response', + '@' . Table\ChangeController::class, ], ], Table\ChartController::class => [ 'class' => Table\ChartController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@dbi', + '@' . DbTableExists::class, + '@config', ], ], Table\CreateController::class => [ 'class' => Table\CreateController::class, 'arguments' => [ - '$response' => '@response', - '$transformations' => '@transformations', - '$config' => '@config', - '$dbi' => '@dbi', - '$columnsDefinition' => '@table_columns_definition', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, + '@response', + '@transformations', + '@config', + '@dbi', + '@table_columns_definition', + '@' . UserPrivilegesFactory::class, ], ], Table\DeleteConfirmController::class => [ 'class' => Table\DeleteConfirmController::class, - 'arguments' => ['$response' => '@response', '$dbTableExists' => '@' . DbTableExists::class], + 'arguments' => ['@response', '@' . DbTableExists::class], ], Table\DeleteRowsController::class => [ 'class' => Table\DeleteRowsController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi', '$sql' => '@sql'], + 'arguments' => ['@response', '@dbi', '@sql'], ], Table\DropColumnConfirmationController::class => [ 'class' => Table\DropColumnConfirmationController::class, - 'arguments' => ['$response' => '@response', '$dbTableExists' => '@' . DbTableExists::class], + 'arguments' => ['@response', '@' . DbTableExists::class], ], Table\DropColumnController::class => [ 'class' => Table\DropColumnController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$flashMessenger' => '@' . FlashMessenger::class, - '$relationCleanup' => '@relation_cleanup', + '@response', + '@dbi', + '@' . FlashMessenger::class, + '@relation_cleanup', ], ], Table\ExportController::class => [ 'class' => Table\ExportController::class, 'arguments' => [ - '$response' => '@response', - '$export' => '@export_options', - '$pageSettings' => '@' . PageSettings::class, + '@response', + '@export_options', + '@' . PageSettings::class, ], ], Table\ExportRowsController::class => [ 'class' => Table\ExportRowsController::class, - 'arguments' => ['$response' => '@response', '$exportController' => '@' . Table\ExportController::class], + 'arguments' => ['@response', '@' . Table\ExportController::class], ], Table\FindReplaceController::class => [ 'class' => Table\FindReplaceController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@dbi', + '@' . DbTableExists::class, + '@config', ], ], Table\GetFieldController::class => [ @@ -1039,170 +1039,170 @@ return [ Table\GisVisualizationController::class => [ 'class' => Table\GisVisualizationController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$responseFactory' => '@' . ResponseFactory::class, - '$config' => '@config', + '@response', + '@template', + '@dbi', + '@' . DbTableExists::class, + '@' . ResponseFactory::class, + '@config', ], ], Table\ImportController::class => [ 'class' => Table\ImportController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$pageSettings' => '@' . PageSettings::class, - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@dbi', + '@' . PageSettings::class, + '@' . DbTableExists::class, + '@config', ], ], Table\IndexesController::class => [ 'class' => Table\IndexesController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$dbi' => '@dbi', - '$indexes' => '@table_indexes', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@dbi', + '@table_indexes', + '@' . DbTableExists::class, + '@config', ], ], Table\IndexRenameController::class => [ 'class' => Table\IndexRenameController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$dbi' => '@dbi', - '$indexes' => '@table_indexes', - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@template', + '@dbi', + '@table_indexes', + '@' . DbTableExists::class, ], ], Table\Maintenance\AnalyzeController::class => [ 'class' => Table\Maintenance\AnalyzeController::class, - 'arguments' => ['$response' => '@response', '$model' => '@table_maintenance', '$config' => '@config'], + 'arguments' => ['@response', '@table_maintenance', '@config'], ], Table\Maintenance\CheckController::class => [ 'class' => Table\Maintenance\CheckController::class, - 'arguments' => ['$response' => '@response', '$model' => '@table_maintenance', '$config' => '@config'], + 'arguments' => ['@response', '@table_maintenance', '@config'], ], Table\Maintenance\ChecksumController::class => [ 'class' => Table\Maintenance\ChecksumController::class, - 'arguments' => ['$response' => '@response', '$model' => '@table_maintenance', '$config' => '@config'], + 'arguments' => ['@response', '@table_maintenance', '@config'], ], Table\Maintenance\OptimizeController::class => [ 'class' => Table\Maintenance\OptimizeController::class, - 'arguments' => ['$response' => '@response', '$model' => '@table_maintenance', '$config' => '@config'], + 'arguments' => ['@response', '@table_maintenance', '@config'], ], Table\Maintenance\RepairController::class => [ 'class' => Table\Maintenance\RepairController::class, - 'arguments' => ['$response' => '@response', '$model' => '@table_maintenance', '$config' => '@config'], + 'arguments' => ['@response', '@table_maintenance', '@config'], ], Table\Partition\AnalyzeController::class => [ 'class' => Table\Partition\AnalyzeController::class, - 'arguments' => ['$response' => '@response', '$model' => '@partitioning_maintenance'], + 'arguments' => ['@response', '@partitioning_maintenance'], ], Table\Partition\CheckController::class => [ 'class' => Table\Partition\CheckController::class, - 'arguments' => ['$response' => '@response', '$model' => '@partitioning_maintenance'], + 'arguments' => ['@response', '@partitioning_maintenance'], ], Table\Partition\DropController::class => [ 'class' => Table\Partition\DropController::class, - 'arguments' => ['$response' => '@response', '$model' => '@partitioning_maintenance'], + 'arguments' => ['@response', '@partitioning_maintenance'], ], Table\Partition\OptimizeController::class => [ 'class' => Table\Partition\OptimizeController::class, - 'arguments' => ['$response' => '@response', '$model' => '@partitioning_maintenance'], + 'arguments' => ['@response', '@partitioning_maintenance'], ], Table\Partition\RebuildController::class => [ 'class' => Table\Partition\RebuildController::class, - 'arguments' => ['$response' => '@response', '$model' => '@partitioning_maintenance'], + 'arguments' => ['@response', '@partitioning_maintenance'], ], Table\Partition\RepairController::class => [ 'class' => Table\Partition\RepairController::class, - 'arguments' => ['$response' => '@response', '$model' => '@partitioning_maintenance'], + 'arguments' => ['@response', '@partitioning_maintenance'], ], Table\Partition\TruncateController::class => [ 'class' => Table\Partition\TruncateController::class, - 'arguments' => ['$response' => '@response', '$model' => '@partitioning_maintenance'], + 'arguments' => ['@response', '@partitioning_maintenance'], ], Operations\TableController::class => [ 'class' => Operations\TableController::class, 'arguments' => [ - '$response' => '@response', - '$operations' => '@operations', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, - '$relation' => '@relation', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@operations', + '@' . UserPrivilegesFactory::class, + '@relation', + '@dbi', + '@' . DbTableExists::class, + '@config', ], ], Table\PrivilegesController::class => [ 'class' => Table\PrivilegesController::class, 'arguments' => [ - '$response' => '@response', - '$privileges' => '@server_privileges', - '$dbi' => '@dbi', - '$config' => '@config', + '@response', + '@server_privileges', + '@dbi', + '@config', ], ], Table\RecentFavoriteController::class => [ 'class' => Table\RecentFavoriteController::class, - 'arguments' => ['$response' => '@response'], + 'arguments' => ['@response'], ], Table\RelationController::class => [ 'class' => Table\RelationController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$relation' => '@relation', - '$dbi' => '@dbi', - '$config' => '@config', + '@response', + '@template', + '@relation', + '@dbi', + '@config', ], ], Table\ReplaceController::class => [ 'class' => Table\ReplaceController::class, 'arguments' => [ - '$response' => '@response', - '$insertEdit' => '@insert_edit', - '$transformations' => '@transformations', - '$relation' => '@relation', - '$dbi' => '@dbi', - '$sqlController' => '@' . Sql\SqlController::class, - '$databaseSqlController' => '@' . Database\SqlController::class, - '$changeController' => '@' . Table\ChangeController::class, - '$tableSqlController' => '@' . Table\SqlController::class, + '@response', + '@insert_edit', + '@transformations', + '@relation', + '@dbi', + '@' . Sql\SqlController::class, + '@' . Database\SqlController::class, + '@' . Table\ChangeController::class, + '@' . Table\SqlController::class, ], ], Table\SearchController::class => [ 'class' => Table\SearchController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$search' => '@table_search', - '$relation' => '@relation', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', - '$sql' => '@sql', + '@response', + '@template', + '@table_search', + '@relation', + '@dbi', + '@' . DbTableExists::class, + '@config', + '@sql', ], ], Table\SqlController::class => [ 'class' => Table\SqlController::class, 'arguments' => [ - '$response' => '@response', - '$sqlQueryForm' => '@sql_query_form', - '$pageSettings' => '@' . PageSettings::class, - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@sql_query_form', + '@' . PageSettings::class, + '@' . DbTableExists::class, ], ], Table\Structure\AddIndexController::class => [ 'class' => Table\Structure\AddIndexController::class, 'arguments' => [ - '$response' => '@response', - '$structureController' => '@' . Table\StructureController::class, - '$indexes' => '@table_indexes', + '@response', + '@' . Table\StructureController::class, + '@table_indexes', ], ], Table\Structure\AddKeyController::class => [ @@ -1211,184 +1211,184 @@ return [ ], Table\Structure\BrowseController::class => [ 'class' => Table\Structure\BrowseController::class, - 'arguments' => ['$response' => '@response', '$sql' => '@sql'], + 'arguments' => ['@response', '@sql'], ], Table\Structure\CentralColumnsAddController::class => [ 'class' => Table\Structure\CentralColumnsAddController::class, 'arguments' => [ - '$response' => '@response', - '$centralColumns' => '@central_columns', - '$structureController' => '@' . Table\StructureController::class, + '@response', + '@central_columns', + '@' . Table\StructureController::class, ], ], Table\Structure\CentralColumnsRemoveController::class => [ 'class' => Table\Structure\CentralColumnsRemoveController::class, 'arguments' => [ - '$response' => '@response', - '$centralColumns' => '@central_columns', - '$structureController' => '@' . Table\StructureController::class, + '@response', + '@central_columns', + '@' . Table\StructureController::class, ], ], Table\Structure\ChangeController::class => [ 'class' => Table\Structure\ChangeController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$columnsDefinition' => '@table_columns_definition', - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, + '@response', + '@dbi', + '@table_columns_definition', + '@' . UserPrivilegesFactory::class, ], ], Table\Structure\FulltextController::class => [ 'class' => Table\Structure\FulltextController::class, 'arguments' => [ - '$response' => '@response', - '$structureController' => '@' . Table\StructureController::class, - '$indexes' => '@table_indexes', + '@response', + '@' . Table\StructureController::class, + '@table_indexes', ], ], Table\Structure\MoveColumnsController::class => [ 'class' => Table\Structure\MoveColumnsController::class, - 'arguments' => ['$response' => '@response', '$template' => '@template', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@template', '@dbi'], ], Table\Structure\PartitioningController::class => [ 'class' => Table\Structure\PartitioningController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$createAddField' => '@create_add_field', - '$structureController' => '@' . Table\StructureController::class, - '$pageSettings' => '@' . PageSettings::class, + '@response', + '@dbi', + '@create_add_field', + '@' . Table\StructureController::class, + '@' . PageSettings::class, ], ], Table\Structure\PrimaryController::class => [ 'class' => Table\Structure\PrimaryController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$structureController' => '@' . Table\StructureController::class, - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@dbi', + '@' . Table\StructureController::class, + '@' . DbTableExists::class, ], ], Table\Structure\ReservedWordCheckController::class => [ 'class' => Table\Structure\ReservedWordCheckController::class, - 'arguments' => ['$response' => '@response', '$config' => '@config'], + 'arguments' => ['@response', '@config'], ], Table\Structure\SaveController::class => [ 'class' => Table\Structure\SaveController::class, 'arguments' => [ - '$response' => '@response', - '$relation' => '@relation', - '$transformations' => '@transformations', - '$dbi' => '@dbi', - '$structureController' => '@' . Table\StructureController::class, - '$userPrivilegesFactory' => '@' . UserPrivilegesFactory::class, - '$config' => '@config', + '@response', + '@relation', + '@transformations', + '@dbi', + '@' . Table\StructureController::class, + '@' . UserPrivilegesFactory::class, + '@config', ], ], Table\Structure\SpatialController::class => [ 'class' => Table\Structure\SpatialController::class, 'arguments' => [ - '$response' => '@response', - '$structureController' => '@' . Table\StructureController::class, - '$indexes' => '@table_indexes', + '@response', + '@' . Table\StructureController::class, + '@table_indexes', ], ], Table\Structure\UniqueController::class => [ 'class' => Table\Structure\UniqueController::class, 'arguments' => [ - '$response' => '@response', - '$structureController' => '@' . Table\StructureController::class, - '$indexes' => '@table_indexes', + '@response', + '@' . Table\StructureController::class, + '@table_indexes', ], ], Table\StructureController::class => [ 'class' => Table\StructureController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$relation' => '@relation', - '$transformations' => '@transformations', - '$dbi' => '@dbi', - '$pageSettings' => '@' . PageSettings::class, - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@relation', + '@transformations', + '@dbi', + '@' . PageSettings::class, + '@' . DbTableExists::class, + '@config', ], ], Table\TrackingController::class => [ 'class' => Table\TrackingController::class, 'arguments' => [ - '$response' => '@response', - '$tracking' => '@tracking', - '$trackingChecker' => '@tracking_checker', - '$dbTableExists' => '@' . DbTableExists::class, - '$responseFactory' => '@' . ResponseFactory::class, + '@response', + '@tracking', + '@tracking_checker', + '@' . DbTableExists::class, + '@' . ResponseFactory::class, ], ], Triggers\IndexController::class => [ 'class' => Triggers\IndexController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$dbi' => '@dbi', - '$triggers' => '@triggers', - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@template', + '@dbi', + '@triggers', + '@' . DbTableExists::class, ], ], Table\ZoomSearchController::class => [ 'class' => Table\ZoomSearchController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$search' => '@table_search', - '$relation' => '@relation', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$config' => '@config', + '@response', + '@template', + '@table_search', + '@relation', + '@dbi', + '@' . DbTableExists::class, + '@config', ], ], TableController::class => [ 'class' => TableController::class, - 'arguments' => ['$response' => '@response', '$dbi' => '@dbi'], + 'arguments' => ['@response', '@dbi'], ], ThemesController::class => [ 'class' => ThemesController::class, 'arguments' => [ - '$response' => '@response', - '$template' => '@template', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@response', + '@template', + '@' . PhpMyAdmin\Theme\ThemeManager::class, ], ], ThemeSetController::class => [ 'class' => ThemeSetController::class, 'arguments' => [ - '$response' => '@response', - '$themeManager' => '@' . PhpMyAdmin\Theme\ThemeManager::class, - '$userPreferences' => '@user_preferences', - '$config' => '@config', + '@response', + '@' . PhpMyAdmin\Theme\ThemeManager::class, + '@user_preferences', + '@config', ], ], Transformation\OverviewController::class => [ 'class' => Transformation\OverviewController::class, - 'arguments' => ['$response' => '@response', '$transformations' => '@transformations'], + 'arguments' => ['@response', '@transformations'], ], Transformation\WrapperController::class => [ 'class' => Transformation\WrapperController::class, 'arguments' => [ - '$response' => '@response', - '$transformations' => '@transformations', - '$relation' => '@relation', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, - '$responseFactory' => '@' . ResponseFactory::class, + '@response', + '@transformations', + '@relation', + '@dbi', + '@' . DbTableExists::class, + '@' . ResponseFactory::class, ], ], UserPasswordController::class => [ 'class' => UserPasswordController::class, 'arguments' => [ - '$response' => '@response', - '$userPassword' => '@user_password', - '$dbi' => '@dbi', - '$config' => '@config', + '@response', + '@user_password', + '@dbi', + '@config', ], ], VersionCheckController::class => [ @@ -1398,22 +1398,22 @@ return [ View\CreateController::class => [ 'class' => View\CreateController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@dbi', + '@' . DbTableExists::class, ], ], Operations\ViewController::class => [ 'class' => Operations\ViewController::class, 'arguments' => [ - '$response' => '@response', - '$dbi' => '@dbi', - '$dbTableExists' => '@' . DbTableExists::class, + '@response', + '@dbi', + '@' . DbTableExists::class, ], ], SyncFavoriteTablesController::class => [ 'class' => SyncFavoriteTablesController::class, - 'arguments' => ['$response' => '@response', '$relation' => '@relation', '$config' => '@config'], + 'arguments' => ['@response', '@relation', '@config'], ], ], ];