[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/config/ -> db.yml (source)

   1  services:
   2      dbal.conn:
   3          class: phpbb\db\driver\factory
   4          arguments:
   5              - @service_container
   6  
   7      dbal.conn.driver:
   8          synthetic: true
   9  
  10      dbal.tools:
  11          class: phpbb\db\tools
  12          arguments:
  13              - @dbal.conn
  14  
  15  # ----- Migrator -----
  16      migrator:
  17          class: phpbb\db\migrator
  18          arguments:
  19              - @service_container
  20              - @config
  21              - @dbal.conn
  22              - @dbal.tools
  23              - %tables.migrations%
  24              - %core.root_path%
  25              - %core.php_ext%
  26              - %core.table_prefix%
  27              - @migrator.tool_collection
  28              - @migrator.helper
  29  
  30      migrator.helper:
  31          class: phpbb\db\migration\helper
  32  
  33  # ----- Migrator's tools -----
  34      migrator.tool_collection:
  35          class: phpbb\di\service_collection
  36          arguments:
  37              - @service_container
  38          tags:
  39              - { name: service_collection, tag: migrator.tool }
  40  
  41      migrator.tool.config:
  42          class: phpbb\db\migration\tool\config
  43          arguments:
  44              - @config
  45          tags:
  46              - { name: migrator.tool }
  47  
  48      migrator.tool.config_text:
  49          class: phpbb\db\migration\tool\config_text
  50          arguments:
  51              - @config_text
  52          tags:
  53              - { name: migrator.tool }
  54  
  55      migrator.tool.module:
  56          class: phpbb\db\migration\tool\module
  57          arguments:
  58              - @dbal.conn
  59              - @cache
  60              - @user
  61              - %core.root_path%
  62              - %core.php_ext%
  63              - %tables.modules%
  64          tags:
  65              - { name: migrator.tool }
  66  
  67      migrator.tool.permission:
  68          class: phpbb\db\migration\tool\permission
  69          arguments:
  70              - @dbal.conn
  71              - @cache
  72              - @auth
  73              - %core.root_path%
  74              - %core.php_ext%
  75          tags:
  76              - { name: migrator.tool }


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1