コード例 #1
0
ファイル: ArticlesManager.php プロジェクト: deltaphp/articles
 public function delete(EntityInterface $entity)
 {
     $id = $entity->getId();
     $this->clearCategories($id);
     return parent::delete($entity);
 }
コード例 #2
0
 /**
  * @param integer|string|EntityInterface $object
  * @return integer
  */
 public function filterPartObject2Id($object)
 {
     return (int) ($object instanceof EntityInterface) ? $object->getId() : $object;
 }
コード例 #3
0
ファイル: Repository.php プロジェクト: deltaphp/deltadb
 public function delete(EntityInterface $entity)
 {
     return $this->deleteById($entity->getId());
 }