Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Sep 13, 2012
2 parents 3e018c4 + 111ec5c commit 501223e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions library/Zend/Server/Reflection/AbstractFunction.php
Expand Up @@ -280,6 +280,16 @@ protected function _reflect()
} else {
$helpText = $function->getName();
$return = 'void';

// Try and auto-determine type, based on reflection
$paramTypesTmp = array();
foreach ($parameters as $i => $param) {
$paramType = 'mixed';
if ($param->isArray()) {
$paramType = 'array';
}
$paramTypesTmp[$i] = $paramType;
}
}

// Set method description
Expand Down

0 comments on commit 501223e

Please sign in to comment.