예제 #1
0
 public function removeActionById($id)
 {
     /* @var $dto NEWSFEED_BOL_Action */
     $dto = $this->actionDao->findById($id);
     if ($dto === null) {
         return;
     }
     $this->removeAction($dto->entityType, $dto->entityId);
 }