-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstorages.xml
More file actions
16 lines (15 loc) · 849 Bytes
/
storages.xml
File metadata and controls
16 lines (15 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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="task.lock.storage.file" class="Task\Lock\Storage\FileLockStorage" public="true">
<argument type="expression">parameter('task.lock.storages.file')['directory']</argument>
<tag name="task.lock.storage" alias="file"/>
</service>
<service id="task.lock.storage.cache" class="Task\TaskBundle\Locking\CacheLockStorage" public="true">
<argument type="service" id="cache.app"></argument>
<tag name="task.lock.storage" alias="cache"/>
</service>
</services>
</container>