Lines Matching refs:SoapFault
2 SoapFault class: Invalid Fault code warning given? Can't be an empty string, an array of not 2 elem…
9 new SoapFault("", "message"); // Can't be an empty string
15 new SoapFault(new stdClass(), "message"); // Can't be a non-string (except for null)
20 $fault = new SoapFault("Sender", "message");
22 $fault = new SoapFault(null, "message");
26 new SoapFault(["more"], "message"); // two elements in array required
32 new SoapFault(["m", "more", "superfluous"], "message"); // two required
37 $fault = new SoapFault(["more-ns", "Sender"], "message"); // two given
42 SoapFault::__construct(): Argument #1 ($code) is not a valid fault code
43 SoapFault::__construct(): Argument #1 ($code) must be of type array|string|null, stdClass given
44 SoapFault
45 SoapFault
46 SoapFault::__construct(): Argument #1 ($code) is not a valid fault code
47 SoapFault::__construct(): Argument #1 ($code) is not a valid fault code
48 SoapFault