10 lines
181 B
PHP
10 lines
181 B
PHP
|
<?php
|
||
|
|
||
|
const FIXTURES_DIR = __DIR__.'/Fixtures';
|
||
|
|
||
|
$soapServer = new \SoapServer(FIXTURES_DIR.'/DummyService.wsdl');
|
||
|
$soapServer->fault(
|
||
|
911,
|
||
|
'This is a dummy SoapFault.'
|
||
|
);
|