我如何轉換到這個yml
:XML來YAML轉換
<service id="fos_user.mailer.twig_swift" class="FOS\UserBundle\Mailer\TwigSwiftMailer" public="false">
<argument type="service" id="mailer" />
<argument type="service" id="router" />
<argument type="service" id="twig" />
<argument type="collection">
<argument key="template" type="collection">
<argument key="confirmation">%fos_user.registration.confirmation.template%</argument>
<argument key="resetting">%fos_user.resetting.email.template%</argument>
</argument>
<argument key="from_email" type="collection">
<argument key="confirmation">%fos_user.registration.confirmation.from_email%</argument>
<argument key="resetting">%fos_user.resetting.email.from_email%</argument>
</argument>
</argument>
</service>
現在我走了這麼遠的轉換:
fos_user.mailer.twig_swiftr:
class: FOS\UserBundle\Mailer\TwigSwiftMailer
arguments: ['@mailer', '@router', '@twig']
這<argument type = "collection">
是我stucked與線。謝謝。
您可以用[Symfony2的服務配置器]會自動轉換成現在這個(http://converter.rosstuck.com/)。 – RelaXNow