[Doc] Fixed typo

This commit is contained in:
Francis Besset 2011-09-24 13:44:10 +03:00
parent edee6a4c72
commit 0f86292fcb
1 changed files with 1 additions and 1 deletions

View File

@ -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\Param("names", phpType = "string[]")
* @Soap\Result(phpType = "string") * @Soap\Result(phpType = "string")
*/ */
public function welcomeAction() public function welcomeAction($names)
{ {
return $this->container->get('besimple.soap.response')->setReturnValue("Welcome ".implode(', ', $names)); return $this->container->get('besimple.soap.response')->setReturnValue("Welcome ".implode(', ', $names));
} }