(PHP 8 >= 8.1.0)
ReflectionFunctionAbstract::hasTentativeReturnType — Devuelve si la función tiene un tipo de retorno tentativo
Devuelve si la función tiene un tipo de retorno tentativo.
Esta función no tiene parámetros.
Devuelve true
si la función tiene un tipo de retorno tentativo, en caso contrario false
.
Ejemplo #1 Ejemplo de ReflectionFunctionAbstract::hasTentativeReturnType()
<?php
$method = new ReflectionMethod(\ArrayAccess::class, 'offsetGet');
var_dump($method->hasTentativeReturnType());
El resultado del ejemplo sería:
bool(true)