common\services\PostService::delete PHP Method

delete() public static method

删除帖子
public static delete ( Post $post )
$post common\models\Post
    public static function delete(Post $post)
    {
        $post->setAttributes(['status' => Post::STATUS_DELETED]);
        $post->save();
        Notification::updateAll(['status' => Post::STATUS_DELETED], ['post_id' => $post->id]);
    }