bubasuma\simplechat\db\Message::baseQuery PHP Method

baseQuery() protected static method

protected static baseQuery ( integer $userId, integer $contactId ) : MessageQuery
$userId integer
$contactId integer
return MessageQuery
    protected static function baseQuery($userId, $contactId)
    {
        return static::find()->between($userId, $contactId)->orderBy(['id' => SORT_DESC]);
    }