forked from akira28/AliceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
locator.xml
23 lines (19 loc) · 1010 Bytes
/
locator.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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">
<services>
<service id="hautelook_alice.locator.env_directory"
class="Hautelook\AliceBundle\Locator\EnvDirectoryLocator">
<argument type="string">%hautelook_alice.fixtures_path%</argument>
<argument type="string">%hautelook_alice.root_dirs%</argument>
</service>
<service id="hautelook_alice.locator.environmentless"
class="Hautelook\AliceBundle\Locator\EnvironmentlessFilesLocator">
<argument type="service" id="hautelook_alice.locator.env_directory" />
</service>
<service id="hautelook_alice.locator"
alias="hautelook_alice.locator.environmentless"
public="true" />
</services>
</container>