コード例 #1
0
ファイル: PostManager.php プロジェクト: qushe-demon/ghost
 /**
  * {@inheritDoc}
  */
 public function doDeletePost(PostInterface $post)
 {
     $post->setIsDeleted(true);
     $this->em->persist($post);
     $this->em->flush();
 }
コード例 #2
0
ファイル: PostEvent.php プロジェクト: qushe-demon/ghost
 public function __construct(PostInterface $post)
 {
     parent::__construct($post->getTopic());
     $this->post = $post;
 }