Storm\Drivers\Base\Object\Properties\Collections\Collection::offsetExists PHP Méthode

offsetExists() public méthode

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

Usage Example

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