void __set(string $key, mixed $value) Dynamically set the value of an attribute. Parameters string $key mixed $value Return Value void
bool __isset(string $key) Dynamically check if an attribute is set. Parameters string $key Return Value bool
mixed __get(string $key) Dynamically retrieve the value of an attribute. Parameters string $key Return Value mixed
void __construct(array|object $attributes = array()) Create a new fluent container instance. Parameters array|object $attributes Return Value void
$this __call(string $method, array $parameters) Handle dynamic calls to the container to set attributes. Parameters string $method array $parameters Return Value $this
string toJson(int $options) Convert the Fluent instance to JSON. Parameters int $options Return Value string
array toArray() Convert the Fluent instance to an array. Return Value array
void offsetUnset(string $offset) Unset the value at the given offset. Parameters string $offset Return Value void
void offsetSet(string $offset, mixed $value) Set the value at the given offset. Parameters string $offset mixed $value Return Value void
mixed offsetGet(string $offset) Get the value for a given offset. Parameters string $offset Return Value mixed
Page 652 of 996