<?
/**
* [test description]
* @param bool|boolean $test [description]
* @return [type] [description]
*/
function test(bool $test = true) : bool {
return false;
}
?>
The return type above is specified as bool, but [type] is used in the auto-generated docblock.
Expected result is:
<?
/**
* [test description]
* @param bool|boolean $test [description]
* @return bool [description]
*/
function test(bool $test = true) : bool {
return false;
}
?>
The return type above is specified as
bool, but[type]is used in the auto-generated docblock.Expected result is: