Pimcore\Db\PhpArrayFileTable::getById PHP Method

getById() public method

public getById ( string | integer $id ) : array | null
$id string | integer
return array | null
    public function getById($id)
    {
        if (isset($this->data[$id])) {
            return $this->data[$id];
        }
        return null;
    }