interface IArguments (View source)

This interface defines the contract for handling arguments in database connections.

Methods

IConnection|string|int|bool|array|null
__call(string $name, array $arguments)

Triggered when invoking inaccessible methods in an object context

static IConnection|string|int|bool|array|null
__callStatic(string $name, array $arguments)

Triggered when invoking inaccessible methods in a static context

Details

IConnection|string|int|bool|array|null __call(string $name, array $arguments)

Triggered when invoking inaccessible methods in an object context

Parameters

string $name

Name of the method

array $arguments

Array of arguments

Return Value

IConnection|string|int|bool|array|null

Exceptions

ReflectionException

static IConnection|string|int|bool|array|null __callStatic(string $name, array $arguments)

Triggered when invoking inaccessible methods in a static context

Parameters

string $name

Name of the static method

array $arguments

Array of arguments

Return Value

IConnection|string|int|bool|array|null

Exceptions

ReflectionException