aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/default/container/services_attachment.yml
blob: f448367473a51da840a3efa249ff686a873ade69 (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
        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%'