mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-03 00:28:53 +00:00
40 lines
974 B
YAML
40 lines
974 B
YAML
services:
|
|
attachment.delete:
|
|
class: phpbb\attachment\delete
|
|
scope: prototype
|
|
arguments:
|
|
- @config
|
|
- @dbal.conn
|
|
- @dispatcher
|
|
- @filesystem
|
|
- @attachment.resync
|
|
- %core.root_path%
|
|
|
|
attachment.manager:
|
|
class: phpbb\attachment\manager
|
|
scope: prototype
|
|
arguments:
|
|
- @attachment.delete
|
|
- @attachment.resync
|
|
- @attachment.upload
|
|
|
|
attachment.resync:
|
|
class: phpbb\attachment\resync
|
|
scope: prototype
|
|
arguments:
|
|
- @dbal.conn
|
|
|
|
attachment.upload:
|
|
class: phpbb\attachment\upload
|
|
scope: prototype
|
|
arguments:
|
|
- @auth
|
|
- @cache
|
|
- @config
|
|
- @files.upload
|
|
- @language
|
|
- @mimetype.guesser
|
|
- @dispatcher
|
|
- @plupload
|
|
- @user
|
|
- %core.root_path%
|