common\models\PostComment::findDeletedComment PHP Method

findDeletedComment() public static method

获取已经删除过的评论
public static findDeletedComment ( $id ) : array | null | ActiveRecord
$id
return array | null | yii\db\ActiveRecord
    public static function findDeletedComment($id)
    {
        return static::findModel($id, ['status' => self::STATUS_DELETED]);
    }