ArrayRecord
extends ArrayDataRecord
in package
implements
StoredRecordInterface
A simple array wrapper that implements `RecordInterface`
Table of Contents
Interfaces
Properties
- $data : array<string|int, mixed>
- $id : int
- $lastUpdate : DateTimeInterface
- $started : DateTimeInterface
Methods
- __construct() : mixed
- allData() : array<string, mixed>
- Return the data in the record
- getDataValue() : mixed
- Retrieve a value given by path to the data.
- getLastUpdate() : DateTimeInterface
- Since there is no interface for immutable date times, implementations MUST return a fresh object every time.
- getRecordId() : int
- Return the unique ID of this record
- getStarted() : DateTimeInterface
- Since there is no interface for immutable date times, implementations MUST return a fresh object every time.
Properties
$data read-only
private
array<string|int, mixed>
$data
$id read-only
private
int
$id
$lastUpdate read-only
private
DateTimeInterface
$lastUpdate
$started read-only
private
DateTimeInterface
$started
Methods
__construct()
public
__construct(array<string, mixed> $data, int $id, DateTimeInterface $started, DateTimeInterface $lastUpdate) : mixed
Parameters
- $data : array<string, mixed>
- $id : int
- $started : DateTimeInterface
- $lastUpdate : DateTimeInterface
allData()
Return the data in the record
public
allData() : array<string, mixed>
Return values
array<string, mixed>getDataValue()
Retrieve a value given by path to the data.
public
getDataValue(array<int, string|int> $path) : mixed
Parameters
- $path : array<int, string|int>
getLastUpdate()
Since there is no interface for immutable date times, implementations MUST return a fresh object every time.
public
getLastUpdate() : DateTimeInterface
Return values
DateTimeInterfacegetRecordId()
Return the unique ID of this record
public
getRecordId() : int
Return values
intgetStarted()
Since there is no interface for immutable date times, implementations MUST return a fresh object every time.
public
getStarted() : DateTimeInterface