File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ and adding a priority.
164
164
<!-- app/config/services.xml -->
165
165
<?xml version =" 1.0" encoding =" UTF-8" ?>
166
166
<container xmlns =" http://symfony.com/schema/dic/services"
167
- xmlns : xsi =" ' http://www.w3.org/2001/XMLSchema-Instance"
167
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-Instance"
168
168
xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
169
169
170
170
<services >
Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ to another service: ``AppBundle\Mailer``. One way to do this is with an expressi
24
24
# app/config/config.yml
25
25
services :
26
26
# ...
27
-
27
+
28
28
AppBundle\Mail\MailerConfiguration : ~
29
-
29
+
30
30
AppBundle\Mailer :
31
31
arguments : ['@=service("AppBundle\Mail\MailerConfiguration").getMailerMethod()']
32
32
@@ -56,7 +56,7 @@ to another service: ``AppBundle\Mailer``. One way to do this is with an expressi
56
56
use AppBundle\Mail\MailerConfiguration;
57
57
use AppBundle\Mailer;
58
58
use Symfony\Component\ExpressionLanguage\Expression;
59
-
59
+
60
60
$container->autowire(AppBundle\Mail\MailerConfiguration::class);
61
61
62
62
$container->autowire(Mailer::class)
You can’t perform that action at this time.
0 commit comments