Methods |
public
|
__construct(iterable<TKey, TValue> $attributes = []): void
Create a new fluent instance.
Create a new fluent instance.
Overriden by
|
#
|
public
|
get<TGetDefault>(TKey $key, TGetDefault|(Closure(): TGetDefault) $default = null): TValue|TGetDefault
Get an attribute from the fluent instance using "dot" notation.
Get an attribute from the fluent instance using "dot" notation.
|
#
|
public
|
set(TKey $key, TValue $value): $this
Set an attribute on the fluent instance using "dot" notation.
Set an attribute on the fluent instance using "dot" notation.
|
#
|
public
|
fill(iterable<TKey, TValue> $attributes): $this
Fill the fluent instance with an array of attributes.
Fill the fluent instance with an array of attributes.
|
#
|
public
|
value(string $key, mixed $default = null): mixed
Get an attribute from the fluent instance.
Get an attribute from the fluent instance.
|
#
|
public
|
scope(string $key, mixed $default = null): static
Get the value of the given key as a new Fluent instance.
Get the value of the given key as a new Fluent instance.
|
#
|
public
|
all(array|mixed|null $keys = null): array
Get all of the attributes from the fluent instance.
Get all of the attributes from the fluent instance.
|
#
|
protected
|
data(string $key = null, mixed $default = null): mixed
Get data from the fluent instance.
Get data from the fluent instance.
|
#
|
public
|
getAttributes(): array<TKey, TValue>
Get the attributes from the fluent instance.
Get the attributes from the fluent instance.
|
#
|
public
|
toArray(): array<TKey, TValue>
Convert the fluent instance to an array.
Convert the fluent instance to an array.
Implements
|
#
|
public
|
jsonSerialize(): array<TKey, TValue>
Convert the object into something JSON serializable.
Convert the object into something JSON serializable.
Implements
|
#
|
public
|
toJson(int $options = 0): string
Convert the fluent instance to JSON.
Convert the fluent instance to JSON.
Implements
|
#
|
public
|
offsetExists(TKey $offset): bool
Determine if the given offset exists.
Determine if the given offset exists.
Implements
|
#
|
public
|
offsetGet(TKey $offset): TValue|null
Get the value for a given offset.
Get the value for a given offset.
Implements
|
#
|
public
|
offsetSet(TKey $offset, TValue $value): void
Set the value at the given offset.
Set the value at the given offset.
Implements
|
#
|
public
|
offsetUnset(TKey $offset): void
Unset the value at the given offset.
Unset the value at the given offset.
Implements
|
#
|
public
|
__call(TKey $method, array{0: ?TValue} $parameters): $this
Handle dynamic calls to the fluent instance to set attributes.
Handle dynamic calls to the fluent instance to set attributes.
|
#
|
public
|
__get(TKey $key): TValue|null
Dynamically retrieve the value of an attribute.
Dynamically retrieve the value of an attribute.
|
#
|
public
|
__set(TKey $key, TValue $value): void
Dynamically set the value of an attribute.
Dynamically set the value of an attribute.
|
#
|
public
|
__isset(TKey $key): bool
Dynamically check if an attribute is set.
Dynamically check if an attribute is set.
|
#
|
public
|
__unset(TKey $key): void
Dynamically unset an attribute.
Dynamically unset an attribute.
|
#
|