Define correctly the Table\RelationController parameters

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
This commit is contained in:
Hugues Peccatte 2019-06-09 22:11:07 +02:00
parent 553e3615c0
commit 97faeb4420
2 changed files with 2 additions and 4 deletions

View File

@ -242,8 +242,8 @@ services:
response: '@response'
dbi: '@dbi'
template: '@template'
db: null
table: null
db: '%db%'
table: '%table%'
options_array: null
cfgRelation: null
tbl_storage_engine: null

View File

@ -57,8 +57,6 @@ $upd_query = new Table($table, $db, $dbi);
/* Define dependencies for the concerned controller */
$dependency_definitions = [
'db' => $container->get('db'),
'table' => $container->get('table'),
'options_array' => $options_array,
'cfgRelation' => $cfgRelation,
'tbl_storage_engine' => $tbl_storage_engine,