Storm\Drivers\Base\Object\Properties\Collections\Collection::offsetUnset PHP 메소드

offsetUnset() 공개 메소드

public offsetUnset ( $Index )
    public function offsetUnset($Index)
    {
        if (!isset($this[$Index])) {
            return;
        }
        $this->IsAltered = true;
        $this->RemovedEntities[] = $this[$Index];
        return parent::offsetUnset($Index);
    }

Usage Example

예제 #1
0
 public function offsetUnset($index)
 {
     $this->Load();
     return parent::offsetUnset($index);
 }