[SoapServer] Fixed typo on SoapFault exception classes

This commit is contained in:
Francis Besset 2013-07-20 20:38:56 +02:00
parent 333c54d642
commit 2e99bb7e17
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ namespace BeSimple\SoapServer\Exception;
* ReceiverSoapFault send a "Receiver" fault code to client.
* This fault code is standardized: http://www.w3.org/TR/soap12-part1/#tabsoapfaultcodes
*/
class ReceiverSoapFault extends SoapFault
class ReceiverSoapFault extends \SoapFault
{
public function __construct($faultstring, $faultactor = null, $detail = null, $faultname = null, $headerfault = null)
{

View File

@ -17,7 +17,7 @@ namespace BeSimple\SoapServer\Exception;
* SenderSoapFault send a "Sender" fault code to client.
* This fault code is standardized: http://www.w3.org/TR/soap12-part1/#tabsoapfaultcodes
*/
class SenderSoapFault extends SoapFault
class SenderSoapFault extends \SoapFault
{
public function __construct($faultstring, $faultactor = null, $detail = null, $faultname = null, $headerfault = null)
{