Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / xml / services5.xml
1 <?xml version="1.0" ?>
2
3 <container xmlns="http://symfony.com/schema/dic/services"
4     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5     xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
6   <services>
7     <service id="foo" class="FooClass">
8       <argument type="service">
9         <service class="BarClass">
10           <argument type="service">
11             <service class="BazClass">
12             </service>
13           </argument>
14         </service>
15       </argument>
16       <property name="p" type="service">
17         <service class="BuzClass" />
18       </property>
19     </service>
20     <service id="bar" parent="foo" />
21     <service id="biz" class="BizClass">
22         <tag name="biz_tag" />
23     </service>
24   </services>
25 </container>