-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.xml
More file actions
28 lines (22 loc) · 1.06 KB
/
controller.xml
File metadata and controls
28 lines (22 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8" ?>
<!--
~ Copyright (c) Ratepay GmbH
~
~ For the full copyright and license information, please view the LICENSE
~ file that was distributed with this source code.
-->
<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="Ratepay\RpayPayments\Components\InstallmentCalculator\Controller\InstallmentController" autowire="true">
<call method="setContainer">
<argument id="service_container" type="service"/>
</call>
<tag name="controller.service_arguments"/>
</service>
<service id="Ratepay\RpayPayments\Components\InstallmentCalculator\Controller\InstallmentRoute" autowire="true" public="true" >
<argument key="$orderRepository" id="order.repository" type="service"/>
</service>
</services>
</container>