ReflectionFunctionAbstract::getTentativeReturnType
(PHP 8 >= 8.1.0)
ReflectionFunctionAbstract::getTentativeReturnType — Returns the tentative return type associated with the function
Beschreibung
Returns the tentative return type associated with the function.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Returns a ReflectionType object if a tentative return type is
specified, null
otherwise.
Beispiele
Beispiel #1 ReflectionFunctionAbstract::getTentativeReturnType() example
<?php
$method = new ReflectionMethod(\ArrayAccess::class, 'offsetGet');
var_dump($method->getTentativeReturnType());
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
object(ReflectionNamedType)#2 (0) { }
Siehe auch
- ReflectionFunctionAbstract::getReturnType() - Gets the specified return type of a function
- ReflectionFunctionAbstract::hasTentativeReturnType() - Returns whether the function has a tentative return type
- Return Type Compatibility with Internal Classes