예제 #1
0
파일: DormRow.php 프로젝트: vlki/dorm
 public function offsetUnset($index)
 {
     $index = (string) $index;
     if (isset($this->callbacks[$index])) {
         unset($this->callbacks[$index]);
         if (isset($this->results[$index])) {
             unset($this->results[$index]);
         }
     } else {
         parent::offsetUnset($index);
     }
 }