xref: /PHP-8.1/ext/soap/tests/bugs/bug29109.phpt (revision 7f2f0c00)
1--TEST--
2Bug #29109 (Uncaught SoapFault exception: [WSDL] Out of memory)
3--EXTENSIONS--
4soap
5--INI--
6soap.wsdl_cache_enabled=0
7--FILE--
8<?php
9$client = new SoapClient(__DIR__."/bug29109.wsdl");
10var_dump($client->__getFunctions());
11?>
12--EXPECT--
13array(1) {
14  [0]=>
15  string(53) "HelloWorldResponse HelloWorld(HelloWorld $parameters)"
16}
17