ZF-6975: Zend_Amf_Adobe_Introspector works incorrectly if the argument /return type of a function is specified as 'int' in the doc block
Description
Introspecting a php file : <?php class TestInt{ /** * // Returns square of given number * @param string $num * @return int */ function square1($num) { return $num; } } returns the XML as: <?xml version="1.0" encoding="utf-8"?>
The XML contains an entry which is wrong as this is a primitive type.
Comments
Posted by Stanislav Malyshev (stas) on 2009-06-15T14:35:38.000+0000
fixed, int/integer/bool/boolean/float are now passed as-is