[Doc] Fixed typo
This commit is contained in:
parent
edee6a4c72
commit
0f86292fcb
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue