From 0f86292fcbf025552e8ac0b44d8bd7168c998bdf Mon Sep 17 00:00:00 2001 From: Francis Besset Date: Sat, 24 Sep 2011 13:44:10 +0300 Subject: [PATCH] [Doc] Fixed typo --- Resources/doc/tutorial/header.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/doc/tutorial/header.rst b/Resources/doc/tutorial/header.rst index 687dfef..efd042f 100644 --- a/Resources/doc/tutorial/header.rst +++ b/Resources/doc/tutorial/header.rst @@ -65,7 +65,7 @@ If you want use a header for all actions of your controller you can declare the * @Soap\Param("names", phpType = "string[]") * @Soap\Result(phpType = "string") */ - public function welcomeAction() + public function welcomeAction($names) { return $this->container->get('besimple.soap.response')->setReturnValue("Welcome ".implode(', ', $names)); }