ReflectionFunctionAbstract::hasTentativeReturnType
(PHP 8 >= 8.1.0)
ReflectionFunctionAbstract::hasTentativeReturnType — Returns whether the function has a tentative return type
Description
Returns whether the function has a tentative return type.
Parameters
This function has no parameters.
Return Values
Returns true
if the function has a tentative return type, otherwise false
.
Examples
Example #1 ReflectionFunctionAbstract::hasTentativeReturnType() example
<?php
$method = new ReflectionMethod(\ArrayAccess::class, 'offsetGet');
var_dump($method->hasTentativeReturnType());
The above example will output:
bool(true)
See Also
- ReflectionFunctionAbstract::getTentativeReturnType() - Returns the tentative return type associated with the function
- ReflectionFunctionAbstract::hasReturnType() - Checks if the function has a specified return type
- Return Type Compatibility with Internal Classes