Ver Fonte

set meta data return type to function return type

Tim Fry há 4 meses atrás
pai
commit
249e8e54c2
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      resources/get_php_methods.php

+ 1 - 1
resources/get_php_methods.php

@@ -71,7 +71,7 @@ foreach ($classes_to_scan as $class => $path) {
 			"params"  => "(" . implode(", ", $params) . ")",
 			"doc"     => $doc,
 			"static"  => $method->isStatic(),
-			"return"  => $return_type
+			"meta"    => $return_type
 		];
 	}
 	$class_methods[$class] = $methods;