diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Utils/Routine.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Utils/Routine.php b/src/Utils/Routine.php index f234d97..9bc10f7 100644 --- a/src/Utils/Routine.php +++ b/src/Utils/Routine.php @@ -101,6 +101,7 @@ class Routine 'name' => array(), 'type' => array(), 'length' => array(), + 'length_arr' => array(), 'opts' => array(), ); @@ -110,6 +111,7 @@ class Routine $retval['name'][$idx] = $param->name; $retval['type'][$idx] = $param->type->name; $retval['length'][$idx] = implode(',', $param->type->size); + $retval['length_arr'][$idx] = $param->type->size; $retval['opts'][$idx] = array(); foreach ($param->type->options->options as $opt) { $retval['opts'][$idx][] = is_string($opt) ? |