aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/default/container/services_attachment.yml
blob: c56ced21f433776f58a6a893b6889acf4173ba19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
services:
    attachment.delete:
        class: phpbb\attachment\delete
        shared: false
        arguments:
            - '@config'
            - '@dbal.conn'
            - '@dispatcher'
            - '@filesystem'
            - '@attachment.resync'
            - '%core.root_path%'

    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'
            - '@user'
            - '%core.root_path%'