Documentation

ArrayRecord extends ArrayDataRecord
in package
implements StoredRecordInterface

A simple array wrapper that implements `RecordInterface`

Table of Contents

Interfaces

StoredRecordInterface

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

$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
DateTimeInterface

getRecordId()

Return the unique ID of this record

public getRecordId() : int
Return values
int

getStarted()

Since there is no interface for immutable date times, implementations MUST return a fresh object every time.

public getStarted() : DateTimeInterface
Return values
DateTimeInterface

        
On this page

Search results