LeagueWrap\Dto\AbstractListDto::offsetExists PHP Method

offsetExists() public method

Check if offset exists.
public offsetExists ( mixed $offset ) : boolean
$offset mixed
return boolean
    public function offsetExists($offset)
    {
        $info = $this->getListByKey();
        return isset($info[$offset]);
    }