コード例 #1
0
ファイル: DibiCollection.php プロジェクト: clevis/orm
 /**
  * Discards the internal cache.
  * @param bool
  */
 protected function release($count = false)
 {
     if ($count) {
         $this->count = NULL;
     }
     parent::release();
 }
コード例 #2
0
ファイル: DataSourceCollection.php プロジェクト: clevis/orm
 /**
  * Discards the internal cache.
  * @param bool
  */
 protected function release($count = false)
 {
     if ($count) {
         $this->count = NULL;
     }
     $this->dataSource = NULL;
     parent::release();
 }