This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/DependencyInjection/Fixtures/xml/services9.xml

57 lines
2.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<container xmlns="http://www.symfony-project.org/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.symfony-project.org/schema/dic/services http://www.symfony-project.org/schema/dic/services/services-1.0.xsd">
2010-01-04 14:26:20 +00:00
<parameters>
<parameter key="baz_class">BazClass</parameter>
<parameter key="foo_class">FooClass</parameter>
<parameter key="foo">bar</parameter>
</parameters>
<services>
2011-01-17 22:28:59 +00:00
<service id="foo" class="FooClass" factory-method="getInstance" scope="prototype">
<tag name="foo" foo="foo"/>
<tag name="foo" bar="bar"/>
2010-01-04 14:26:20 +00:00
<argument>foo</argument>
<argument type="service" id="foo.baz"/>
2010-01-04 14:26:20 +00:00
<argument type="collection">
<argument key="%foo%">foo is %foo%</argument>
<argument key="bar">%foo%</argument>
</argument>
<argument>true</argument>
<argument type="service" id="service_container"/>
2011-03-10 14:31:00 +00:00
<property name="foo">bar</property>
<property name="moo" type="service" id="foo.baz"/>
2010-01-04 14:26:20 +00:00
<call method="setBar">
<argument type="service" id="bar"/>
2010-01-04 14:26:20 +00:00
</call>
<call method="initialize"/>
<configurator function="sc_configure"/>
2010-01-04 14:26:20 +00:00
</service>
<service id="bar" class="FooClass">
<argument>foo</argument>
<argument type="service" id="foo.baz"/>
2010-01-04 14:26:20 +00:00
<argument>%foo_bar%</argument>
<configurator service="foo.baz" method="configure"/>
2010-01-04 14:26:20 +00:00
</service>
<service id="foo.baz" class="%baz_class%" factory-method="getInstance">
<configurator class="%baz_class%" method="configureStatic1"/>
2010-01-04 14:26:20 +00:00
</service>
<service id="foo_bar" class="%foo_class%"/>
2010-01-04 14:26:20 +00:00
<service id="method_call1" class="FooClass">
<file>%path%foo.php</file>
2010-01-04 14:26:20 +00:00
<call method="setBar">
<argument type="service" id="foo"/>
2010-01-04 14:26:20 +00:00
</call>
<call method="setBar">
<argument type="service" id="foo2" on-invalid="null"/>
2010-01-04 14:26:20 +00:00
</call>
<call method="setBar">
<argument type="service" id="foo3" on-invalid="ignore"/>
2010-01-04 14:26:20 +00:00
</call>
<call method="setBar">
<argument type="service" id="foobaz" on-invalid="ignore"/>
2010-01-04 14:26:20 +00:00
</call>
</service>
<service id="factory_service" factory-method="getInstance" factory-service="foo.baz"/>
<service id="alias_for_foo" alias="foo"/>
2010-01-04 14:26:20 +00:00
</services>
</container>