hholzgra                Sat Jan 14 11:40:43 2006 UTC

  Modified files:              
    /phpdoc/scripts     zendapi_protos.php 
  Log:
  whitespace
  
  
http://cvs.php.net/viewcvs.cgi/phpdoc/scripts/zendapi_protos.php?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc/scripts/zendapi_protos.php
diff -u phpdoc/scripts/zendapi_protos.php:1.9 
phpdoc/scripts/zendapi_protos.php:1.10
--- phpdoc/scripts/zendapi_protos.php:1.9       Thu Nov 17 23:04:25 2005
+++ phpdoc/scripts/zendapi_protos.php   Sat Jan 14 11:40:43 2006
@@ -1,7 +1,12 @@
 <?php
 $zend_include_dir = "../../php-src/Zend";
 
-$zend_include_files = array("zend.h", "zend_API.h", "zend_objects_API.h", 
"zend_hash.h");
+$zend_include_files = array("zend.h", 
+                            "zend_API.h", 
+                            "zend_objects_API.h", 
+                            "zend_hash.h", 
+                            "zend_list.h", 
+                            "zend_variables.h");
 
 $functions_dir = "../en/internals/zendapi/functions/";
 
@@ -47,7 +52,7 @@
                 // TODO handle ...
                 $params = array();
                 foreach (explode(",", trim($matches[3])) as $param) {
-                                       $new_param = array();
+                    $new_param = array();
 
                     $tokens = preg_split("/\s+/", trim($param));
                     $type   = array_shift($tokens);
@@ -62,9 +67,9 @@
                             $name = substr($name, 1);
                         }
                         $new_param['type'] = $type;
-                                               $new_param['name'] = $name;
+                        $new_param['name'] = $name;
                     }
-                                       $params[] = $new_param;
+                    $params[] = $new_param;
                 }
 
 

Reply via email to