ReflectionFunctionAbstract::hasTentativeReturnType
(PHP 8 >= 8.1.0)
ReflectionFunctionAbstract::hasTentativeReturnType — Returns whether the function has a tentative return type
Beschreibung
Returns whether the function has a tentative return type.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Returns true
if the function has a tentative return type, otherwise false
.
Beispiele
Beispiel #1 ReflectionFunctionAbstract::hasTentativeReturnType() example
<?php
$method = new ReflectionMethod(\ArrayAccess::class, 'offsetGet');
var_dump($method->hasTentativeReturnType());
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
bool(true)
Siehe auch
- 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