-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathservices.xml
More file actions
31 lines (26 loc) · 1.01 KB
/
services.xml
File metadata and controls
31 lines (26 loc) · 1.01 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
31
<?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="loaded_service_id"
class="stdClass">
</service>
<service id="parent_service_id"
class="stdClass">
</service>
<service id="child_service_id"
parent="parent_service_id">
<argument>first argument</argument>
<argument>second argument</argument>
</service>
<service id="service_with_method_calls_id">
<call method="theRightMethodName">
<argument>first argument</argument>
<argument>second argument</argument>
</call>
</service>
<service id="synthetic_service" synthetic="true">
</service>
</services>
</container>