Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch '0.1'
  • Loading branch information
francisbesset committed Nov 6, 2013
2 parents ec9c695 + 477e532 commit 044d399
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions SoapKernel.php
Expand Up @@ -14,8 +14,8 @@
namespace BeSimple\SoapServer;

use BeSimple\SoapCommon\SoapKernel as CommonSoapKernel;
use BeSimple\SoapCommon\SoapRequest;
use BeSimple\SoapCommon\SoapResponse;
use BeSimple\SoapCommon\SoapRequest as CommonSoapRequest;
use BeSimple\SoapCommon\SoapResponse as CommonSoapResponse;

/**
* SoapKernel for Server.
Expand All @@ -27,7 +27,7 @@ class SoapKernel extends CommonSoapKernel
/**
* {@inheritDoc}
*/
public function filterRequest(SoapRequest $request)
public function filterRequest(CommonSoapRequest $request)
{
parent::filterRequest($request);

Expand All @@ -37,11 +37,11 @@ public function filterRequest(SoapRequest $request)
/**
* {@inheritDoc}
*/
public function filterResponse(SoapResponse $response)
public function filterResponse(CommonSoapResponse $response)
{
$response->setAttachments($this->attachments);
$this->attachments = array();

parent::filterResponse($response);
}
}
}

0 comments on commit 044d399

Please sign in to comment.