-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcommands.xml
20 lines (18 loc) · 1.13 KB
/
commands.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<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="bernard.command.consume" class="Bernard\Command\ConsumeCommand" public="true">
<argument type="service" id="bernard.consumer" />
<argument type="service" id="bernard.queue_factory" />
<tag name="console.command" command="bernard:consume" />
</service>
<service id="bernard.command.produce" class="Bernard\Command\ProduceCommand" public="true">
<argument type="service" id="bernard.producer" />
<tag name="console.command" command="bernard:produce" />
</service>
<service class="Bernard\BernardBundle\Command\DebugCommand" id="Bernard\BernardBundle\Command\DebugCommand" public="true">
<argument type="service" id="bernard.router" />
<tag name="console.command" command="bernard:debug" />
</service>
</services>
</container>