Nextras\Orm\Mapper\BaseMapper::clearCollectionCache PHP 메소드

clearCollectionCache() 공개 메소드

    public function clearCollectionCache()
    {
        $this->collectionCache = (object) null;
    }

Usage Example

예제 #1
0
파일: ArrayMapper.php 프로젝트: nextras/orm
 public function clearCollectionCache()
 {
     parent::clearCollectionCache();
     $this->data = null;
 }