From 3663208493bb8bfbb0357b4566cef64a11aad590 Mon Sep 17 00:00:00 2001 From: ismail BASKIN Date: Sat, 30 Apr 2016 05:12:57 +0300 Subject: [PATCH] Fix snippet --- components/dependency_injection/parentservices.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dependency_injection/parentservices.rst b/components/dependency_injection/parentservices.rst index aa1ec8622d8..c1e8d9d3e4d 100644 --- a/components/dependency_injection/parentservices.rst +++ b/components/dependency_injection/parentservices.rst @@ -385,7 +385,7 @@ to the ``NewsletterManager`` class, the config would look like this: $mailManager = new Definition(); $mailManager - ->setAbstract(true); + ->setAbstract(true) ->addMethodCall('setMailer', array( new Reference('my_mailer'), ))