The following code returns an error in the amfphp service borwser. "Unexpected '(' on line 11",
<?php
class HelloWorld{
function HelloWorld(){
$this->methodTable = array(
"makeEcho" => array(
"description" => "Echos the passed argument back to Flash (no need to set the return type)",
"access" => "remote",
"arguments" => array ("msg"),
"returntype" => "string"
)
);
}
/**
* Echos the passed argument back to Flash
* @returns String
* @access remote
*/
function makeEcho($msg){
return $msg;
}
}
?>