abstract class BaseCollection implements ArrayAccess, Countable, JsonSerializable, Iterator (View source)

internal  For internal use, a will be coded to fit what is needed in this project.
 

Properties

protected $items
protected TKey> $keys

The keys in this collection.

protected int $position

The current position of the iterator.

Methods

__construct($items = [])

No description

mixed
jsonSerialize()

No description

all()

No description

add(TValue $item, TKey $key = null)

Add an item.

TValue|null
get(TKey $key)

Get an item by {@param $key}.

bool
isEmpty()

Check if the collection is empty.

int
count()

Count the number of items.

bool
offsetExists(TKey $key)

Check if an offset($key) exists.

mixed
offsetGet(TKey $key)

Get the item at offset($key).

void
offsetSet(TKey|null $key, TValue $value)

Set/Add an item.

void
offsetUnset(TKey $key)

Unset an item from the list.

TValue
current()

Get the current element.

TKey
key()

Get the key of the current element.

void
next()

Move forward to next element.

void
rewind()

Rewind the iterator to the first element.

bool
valid()

Checks if current iterator position is valid.

Details

__construct($items = [])

No description

Parameters

$items

abstract mixed jsonSerialize()

No description

Return Value

mixed

all()

No description

BaseCollection add(TValue $item, TKey $key = null)

Add an item.

Parameters

TValue $item
TKey $key

Return Value

BaseCollection

TValue|null get(TKey $key)

Get an item by {@param $key}.

Parameters

TKey $key

Return Value

TValue|null

bool isEmpty()

Check if the collection is empty.

Return Value

bool

int count()

Count the number of items.

Return Value

int

bool offsetExists(TKey $key)

Check if an offset($key) exists.

Parameters

TKey $key

Return Value

bool

mixed offsetGet(TKey $key)

Get the item at offset($key).

Parameters

TKey $key

Return Value

mixed

void offsetSet(TKey|null $key, TValue $value)

Set/Add an item.

Parameters

TKey|null $key
TValue $value

Return Value

void

void offsetUnset(TKey $key)

Unset an item from the list.

Parameters

TKey $key

Return Value

void

TValue current()

Get the current element.

Return Value

TValue

TKey key()

Get the key of the current element.

Return Value

TKey

void next()

Move forward to next element.

Return Value

void

void rewind()

Rewind the iterator to the first element.

Return Value

void

bool valid()

Checks if current iterator position is valid.

Return Value

bool