WIP fix #71: allow parsing of large xml files
[plcapi.git] / demo / client / agesort.php
index 90622d2..60cc4b8 100644 (file)
@@ -15,7 +15,7 @@ PhpXmlRpc\Autoloader::register();
 
 $inAr = array("Dave" => 24, "Edd" => 45, "Joe" => 37, "Fred" => 27);
 print "This is the input data:<br/><pre>";
-foreach($inAr as $key => $val) {
+foreach ($inAr as $key => $val) {
     print $key . ", " . $val . "\n";
 }
 print "</pre>";