1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/16741] General fixes

PHPBB3-16741
This commit is contained in:
Tristan Darricau
2021-11-09 02:48:34 +01:00
parent 300e5399f5
commit 6ce708539b
20 changed files with 941 additions and 385 deletions

View File

@@ -7,7 +7,6 @@ imports:
- { resource: services_content.yml }
- { resource: services_cron.yml }
- { resource: services_db.yml }
- { resource: services_doctrine.yml }
- { resource: services_event.yml }
- { resource: services_extensions.yml }
- { resource: services_feed.yml }

View File

@@ -7,7 +7,10 @@ services:
dbal.conn.driver:
synthetic: true
# ----- DB Tools -----
dbal.conn.doctrine:
synthetic: true
# ----- DB Tools -----
dbal.tools.factory:
class: phpbb\db\tools\factory
@@ -15,7 +18,7 @@ services:
class: phpbb\db\tools\tools_interface
factory: ['@dbal.tools.factory', get]
arguments:
- '@dbal.conn.driver'
- '@dbal.conn.doctrine'
# ----- DB Extractor -----
dbal.extractor.factory:

View File

@@ -1,5 +0,0 @@
services:
doctrine.connection:
class: Doctrine\DBAL\Connection
factory: ['phpbb\db\doctrine\connection_factory', 'get_connection']
arguments: ['@config.php']