The bundle is back!

The definition of service has changed, read the README.
This commit is contained in:
Francis Besset
2011-07-17 10:46:54 +02:00
parent 81118f8d47
commit 1c608ccf20
48 changed files with 641 additions and 535 deletions

View File

@ -17,10 +17,12 @@ class RpcLiteralRequestMessageBinder implements MessageBinderInterface
public function processMessage(Method $messageDefinition, $message)
{
$result = array();
$i = 0;
$i = 0;
foreach($messageDefinition->getArguments() as $argument) {
$result[$argument->getName()] = $message[$i];
if (isset($message[$i])) {
$result[$argument->getName()] = $message[$i];
}
$i++;
}