コード例 #1
0
ファイル: TouchRecord.php プロジェクト: spryker/Touch
 /**
  * Removes Touch data in any of the database tables for Collectors
  * If a different Collector table is added to the system, this code should
  * be updated or overridden to include covering that table as well
  *
  * @param array $touchIds
  *
  * @return void
  */
 protected function removeTouchDataForCollectors(array $touchIds)
 {
     $this->touchQueryContainer->queryTouchSearchByTouchIds($touchIds)->delete();
     $this->touchQueryContainer->queryTouchStorageByTouchIds($touchIds)->delete();
 }