ReflectionFunction class reports * information about a function. * * @link https://php.net/manual/en/class.reflectionfunction.php */ class ReflectionFunction extends ReflectionFunctionAbstract { /** * Indicates deprecated functions. * * @link https://www.php.net/manual/en/class.reflectionfunction.php#reflectionfunction.constants.is-deprecated */ public const IS_DEPRECATED = 2048; /** @var string Function name, same as calling the {@see ReflectionFunction::getName()} method */ #[Immutable] public $name; /** * Constructs a ReflectionFunction object * * @link https://php.net/manual/en/reflectionfunction.construct.php * @param string|Closure $function The name of the function to reflect or a closure. * @throws ReflectionException if the function does not exist. */ public function __construct(#[LanguageLevelTypeAware(['8.0' => 'Closure|string'], default: '')] $function) { } /** * Returns the string representation of the ReflectionFunction object. * * @link https://php.net/manual/en/reflectionfunction.tostring.php */ #[TentativeType] public function __toString(): string { } /** * Exports function * * @link https://php.net/manual/en/reflectionfunction.export.php * @param string $name The reflection to export. * @param bool $return Setting to {@see true} will return the * export, as opposed to emitting it. Setting to {@see false} (the default) * will do the opposite. * @return string|null If the $return parameter is set to {@see true}, then * the export is returned as a string, otherwise {@see null} is returned. * @removed 8.0 */ #[Deprecated(since: '7.4')] public static function export($name, $return = false) { } /** * Checks if function is disabled * * @link https://php.net/manual/en/reflectionfunction.isdisabled.php * @return bool {@see true} if it's disable, otherwise {@see false} */ #[Deprecated(since: '8.0')] #[Pure] #[TentativeType] public function isDisabled(): bool { } /** * Invokes function * * @link https://www.php.net/manual/en/reflectionfunction.invoke.php * @param mixed ...$args [optional] The passed in argument list. It accepts a * variable number of arguments which are passed to the function much * like {@see call_user_func} is. * @return mixed Returns the result of the invoked function call. */ #[TentativeType] public function invoke(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] ...$args): mixed { } /** * Invokes function args * * @link https://php.net/manual/en/reflectionfunction.invokeargs.php * @param array $args The passed arguments to the function as an array, much * like {@see call_user_func_array} works. * @return mixed the result of the invoked function */ #[TentativeType] public function invokeArgs(array $args): mixed { } /** * Returns a dynamically created closure for the function * * @link https://php.net/manual/en/reflectionfunction.getclosure.php * @return Closure|null Returns {@see Closure} or {@see null} in case of an error. */ #[Pure] #[TentativeType] public function getClosure(): Closure { } #[PhpStormStubsElementAvailable(from: '8.2')] public function isAnonymous(): bool { } } __halt_compiler();----SIGNATURE:----fn8q4F2FT4lloIWoYwwUM5UcVqpcoVkmOsv6kYrzmi2dow8F3liofnERRNn1M7RJmrjo3Wdwl502EmG08yPGPmGty+ZTtpad4aREnVZbZI23m6GuGfCL8IE4YjleglXbujcnuH/qIQc879AcBnzYBRslARbFiVfK5G7APyXBLu25kolROkREvAhkCorCs+wemTIIEPAKEv3LwYbUhgAucxWd2BmD7p109NvHl+spJPDz5A3LhgdixNJBwu/ptWuSeCkPs1Qhlt7bMdhmhHS1npGEgpjWD+tv17BQKi66gqZAyybEjNQwm3ucN8Sw+R8Fh9xJBUjMmXV8B2MssUEr0aV063Xj7n1/+EboMgPNwQARuR/xrF3vPI7UPdNnCgMqjfImilmn1HI/pn5okWWn9M6DN1a5UsW3GO4Yddukj4cqeuZEGTbWlPCSwu8cMnOqJGAM5fLjx+k7wcL6mLFAnRceivCjZvFkq2a6n/m9FHtt0lDhgLlkyFyne70Id1ntDbDux161Yvpr+MwHPaTOhAJNBdWBlXEdLB9K2g6aSx5zJlNOWvSC7pRUFz3HCAoEWd3E+tglMmCFUHz1VQPnUi2FQK/ZxK5VGwbJeLDujYkjCCG2kKGjk/qFWAM6D4iamu9oUcmu5WAOrytm/QFYQtR28NtvdQ7FQZCvlJFRY3I=----ATTACHMENT:----ODUwNzQ1ODkzNDY4MDYxMyAxMzIxODIzMDgxMjc1OTQ2IDE1MDQ4NDM3Mzg4NTYxMzE=