]> granicus.if.org Git - php/commitdiff
- Drop unused code
authorFelipe Pena <felipe@php.net>
Mon, 15 Jun 2009 17:57:05 +0000 (17:57 +0000)
committerFelipe Pena <felipe@php.net>
Mon, 15 Jun 2009 17:57:05 +0000 (17:57 +0000)
ext/soap/tests/bug48557.phpt

index 7d197d449163f6941a290bbc04097f7b964d07a2..8ef778ff3849e5b30a70951fd8a4b5782d95f752 100644 (file)
@@ -8,11 +8,6 @@ ini_set("soap.wsdl_cache_enabled", 0);
 
 function test($map) {
        var_dump($map, $map[1], $map[2]);die;
-       if(isset($map[2])) {
-               die("Success\n");
-       } else {
-               die("Fail\n");
-       }
 }
 
 $y = new SoapServer(dirname(__FILE__) . '/bug48557.wsdl');
@@ -53,8 +48,6 @@ $request = <<<XML
 </SOAP-ENV:Envelope>
 XML;
 
-#$v = array(1 => 123, "2" => 123.5, "asd" => 555);
-#var_dump($v);die;
 $y->handle($request);
 
 ?>