[SoapServer] Fixed typo on SoapFault exception classes
This commit is contained in:
parent
333c54d642
commit
2e99bb7e17
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue