Storm\Drivers\Base\Object\Properties\Collections\Collection::offsetExists PHP Method

offsetExists() public method

public offsetExists ( $Index )
    public function offsetExists($Index)
    {
        if ($Index === null) {
            return false;
        }
        return parent::offsetExists($Index);
    }

Usage Example

Example #1
0
 public function offsetExists($index)
 {
     $this->Load();
     return parent::offsetExists($index);
 }