From 5477af75083fb941efa90649435bb7852368d78c Mon Sep 17 00:00:00 2001 From: Slaven Bacelic Date: Mon, 26 Mar 2018 15:52:47 +0200 Subject: [PATCH] Fix functional testing documentation TracebleProducer is registered as ProducerInterface::class --- docs/bundle/functional_testing.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/bundle/functional_testing.md b/docs/bundle/functional_testing.md index 0a6dcffee..0ed87dc94 100644 --- a/docs/bundle/functional_testing.md +++ b/docs/bundle/functional_testing.md @@ -42,6 +42,7 @@ If you did so, you can use its methods `getTraces`, `getTopicTraces` or `clearTr ```php client->getContainer()->get(TraceableProducer::class); + return $this->client->getContainer()->get(ProducerInterface::class); } } ``` -[back to index](../index.md) \ No newline at end of file +[back to index](../index.md)