(PHP 8 >= 8.1.0)
ReflectionFunctionAbstract::hasTentativeReturnType — Returns whether the function has a tentative return type
Returns whether the function has a tentative return type.
Questa funzione non contiene parametri.
Example #1 ReflectionFunctionAbstract::hasTentativeReturnType() example
<?php
$method = new ReflectionMethod(\ArrayAccess::class, 'offsetGet');
var_dump($method->hasTentativeReturnType());
Il precedente esempio visualizzerà:
bool(true)