(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.
У цієї функції немає параметрів.
Returns true
if the function has a tentative return type, otherwise false
.
Приклад #1 ReflectionFunctionAbstract::hasTentativeReturnType() example
<?php
$method = new ReflectionMethod(\ArrayAccess::class, 'offsetGet');
var_dump($method->hasTentativeReturnType());
Поданий вище приклад виведе:
bool(true)