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/interfaces1.xml
2010-11-30 20:36:56 +01:00

18 lines
543 B
XML
Executable File

<?xml version="1.0" ?>
<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">
<services>
<service id="foo" class="FooClass" />
</services>
<interfaces>
<interface class="FooClass">
<call method="setBar">
<argument>correct</argument>
</call>
</interface>
</interfaces>
</container>