Lines Matching refs:options
2 SoapServer in non WSDL mode without required options
10 echo "\$options not provided\n";
22 echo "Empty \$options array\n";
23 $options = [];
25 $client = new SoapServer(null, $options);
30 $client = new ExtendedSoapServer(null, $options);
35 echo "\$options array only sets \"uri\" option\n";
36 $options = ['uri' => 'https://example.com'];
38 $client = new SoapServer(null, $options);
43 $client = new ExtendedSoapServer(null, $options);
50 $options not provided