common\models\PostComment::findDeletedComment PHP Méthode

findDeletedComment() public static méthode

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