CallInterface
interface CallInterface
CallInterface.
Methods
static
mixed
static
mixed
func(
string $function,
...mixed $arguments)
Call a global function (if exists) with specified arguments.
static
mixed
method(
string|object $object,
string $method,
...mixed $arguments)
Call an object method (if exists) with specified arguments.
static
mixed
staticMethod(
string|object $object,
string $method,
...mixed $arguments)
Call an static object method (if exists) with specified arguments.
Details
at line line 28
static
mixed
this(
string|array|Closure $what,
...mixed $arguments)
Call a global function or class method (if exists) or callable with specified arguments.
at line line 38
static
mixed
func(
string $function,
...mixed $arguments)
Call a global function (if exists) with specified arguments.
at line line 49
static
mixed
method(
string|object $object,
string $method,
...mixed $arguments)
Call an object method (if exists) with specified arguments.
at line line 60
static
mixed
staticMethod(
string|object $object,
string $method,
...mixed $arguments)
Call an static object method (if exists) with specified arguments.