phpbb/phpBB/config/default/container/services_attachment.yml
rxu 302632d240
[ticket/16649] Add compiler pass to make all services public
This also handles BC for phpBB extensions

PHPBB3-16639
2021-02-19 21:18:40 +07:00

39 lines
979 B
YAML

services:
attachment.delete:
class: phpbb\attachment\delete
shared: false
arguments:
- '@config'
- '@dbal.conn'
- '@dispatcher'
- '@attachment.resync'
- '@storage.attachment'
attachment.manager:
class: phpbb\attachment\manager
shared: false
arguments:
- '@attachment.delete'
- '@attachment.resync'
- '@attachment.upload'
attachment.resync:
class: phpbb\attachment\resync
shared: false
arguments:
- '@dbal.conn'
attachment.upload:
class: phpbb\attachment\upload
shared: false
arguments:
- '@auth'
- '@cache'
- '@config'
- '@files.upload'
- '@language'
- '@dispatcher'
- '@plupload'
- '@storage.attachment'
- '@filesystem.temp'
- '@user'