mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
39 lines
980 B
YAML
39 lines
980 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'
|
|
- '@mimetype.guesser'
|
|
- '@dispatcher'
|
|
- '@plupload'
|
|
- '@storage.attachment'
|
|
- '@user'
|