services28.xml 680 B

12345678910111213
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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">
  3. <services>
  4. <defaults public="false" autowire="true">
  5. <tag name="foo" />
  6. </defaults>
  7. <service class="Bar" public="true" />
  8. <service id="with_defaults" class="Foo" />
  9. <service id="no_defaults" class="Foo" public="true" autowire="false" />
  10. <service id="child_def" parent="with_defaults" public="true" autowire="false" />
  11. </services>
  12. </container>