Annotation of embedaddon/php/ext/soap/tests/bugs/bug41477.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #41477 (no arginfo about SoapClient::__soapCall())
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             5: --FILE--
        !             6: <?php
        !             7: $objRfClass = new ReflectionClass('SoapClient');
        !             8: $objRfMethod = $objRfClass->getMethod('__soapCall');
        !             9: $arrParams = $objRfMethod->getParameters();
        !            10: foreach($arrParams as $objRfParam)
        !            11: {
        !            12:         var_dump($objRfParam->getName());
        !            13: }
        !            14: ?>
        !            15: --EXPECT--
        !            16: string(13) "function_name"
        !            17: string(9) "arguments"
        !            18: string(7) "options"
        !            19: string(13) "input_headers"
        !            20: string(14) "output_headers"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>