-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathservices.xml
More file actions
30 lines (27 loc) · 1.75 KB
/
services.xml
File metadata and controls
30 lines (27 loc) · 1.75 KB
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
<?xml version="1.0" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<parameters>
<parameter key="igorw_file_serve.response_factory.php.class">Igorw\FileServeBundle\Response\PhpResponseFactory</parameter>
<parameter key="igorw_file_serve.response_factory.sendfile.class">Igorw\FileServeBundle\Response\SendfileResponseFactory</parameter>
<parameter key="igorw_file_serve.response_factory.xsendfile.class">Igorw\FileServeBundle\Response\XsendfileResponseFactory</parameter>
</parameters>
<services>
<service id="igorw_file_serve.response_factory.php" class="%igorw_file_serve.response_factory.php.class%" public="false">
<argument>%igorw_file_serve.base_dir%</argument>
<argument type="service" id="request_stack" />
<argument>%igorw_file_serve.skip_file_exists%</argument>
</service>
<service id="igorw_file_serve.response_factory.sendfile" class="%igorw_file_serve.response_factory.sendfile.class%" public="false">
<argument>%igorw_file_serve.base_dir%</argument>
<argument type="service" id="request_stack" />
<argument>%igorw_file_serve.skip_file_exists%</argument>
</service>
<service id="igorw_file_serve.response_factory.xsendfile" class="%igorw_file_serve.response_factory.xsendfile.class%" public="false">
<argument>%igorw_file_serve.base_dir%</argument>
<argument type="service" id="request_stack" />
<argument>%igorw_file_serve.skip_file_exists%</argument>
</service>
</services>
</container>