added initial support for service binding
This commit is contained in:
13
ServiceBinding/RpcLiteralResponseMessageBinder.php
Normal file
13
ServiceBinding/RpcLiteralResponseMessageBinder.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Bundle\WebServiceBundle\ServiceBinding;
|
||||
|
||||
use Bundle\WebServiceBundle\ServiceDefinition\Method;
|
||||
|
||||
class RpcLiteralResponseMessageBinder implements MessageBinderInterface
|
||||
{
|
||||
public function processMessage(Method $messageDefinition, $message)
|
||||
{
|
||||
return $message;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user