LeagueWrap\Dto\AbstractListDto::offsetGet PHP Method

offsetGet() public method

Get the value at the given offset.
public offsetGet ( mixed $offset ) : null
$offset mixed
return null
    public function offsetGet($offset)
    {
        $info = $this->getListByKey();
        if (!isset($info[$offset])) {
            return null;
        }
        return $info[$offset];
    }