Merge pull request #656 from soyuka/patch-1

Prevent error "Undefined index" when no subtype provided
This commit is contained in:
William Durand 2015-07-10 11:15:36 +02:00
commit 0699c45dcc

View file

@ -534,7 +534,7 @@ class ApiDocExtractor
{
foreach ($array as $name => $info) {
if (empty($info['dataType'])) {
if (empty($info['dataType']) && isset($info['subType'])) {
$array[$name]['dataType'] = $this->generateHumanReadableType($info['actualType'], $info['subType']);
}