From 92cc33b37f7335b7584b359a24d845c55970bcfc Mon Sep 17 00:00:00 2001 From: alexchuin Date: Mon, 10 Dec 2018 17:23:59 +0100 Subject: [PATCH] Change wrong class name --- service_container/tags.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_container/tags.rst b/service_container/tags.rst index 5ae57d4b22f..1522cf38302 100644 --- a/service_container/tags.rst +++ b/service_container/tags.rst @@ -273,7 +273,7 @@ container for any services with the ``app.mail_transport`` tag:: $taggedServices = $container->findTaggedServiceIds('app.mail_transport'); foreach ($taggedServices as $id => $tags) { - // add the transport service to the ChainTransport service + // add the transport service to the TransportChain service $definition->addMethodCall('addTransport', array(new Reference($id))); } }