some cleanup

Conflicts:

	Controller/SoapWebServiceController.php
	ServiceBinding/ServiceBinder.php
This commit is contained in:
Christian Kerl
2011-07-17 15:01:42 +02:00
committed by Francis Besset
parent 887169de13
commit 0126cd4221
2 changed files with 16 additions and 12 deletions

View File

@ -32,14 +32,8 @@ class ServiceBinder
*/
private $responseMessageBinder;
public function __construct(
ServiceDefinition $definition,
MessageBinderInterface $requestMessageBinder,
MessageBinderInterface $responseMessageBinder
)
{
$this->definition = $definition;
public function __construct(ServiceDefinition $definition, MessageBinderInterface $requestMessageBinder, MessageBinderInterface $responseMessageBinder) {
$this->definition = $definition;
$this->requestMessageBinder = $requestMessageBinder;
$this->responseMessageBinder = $responseMessageBinder;
}