Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Finder/ConversationMessage.php
<?php

namespace XF\Finder;

use
XF\Mvc\Entity\Finder;

class
ConversationMessage extends Finder
{
    public function
inConversation(\XF\Entity\ConversationMaster $conversation)
    {
       
$this->where('conversation_id', $conversation->conversation_id);

        return
$this;
    }

    public function
earlierThan(\XF\Entity\ConversationMessage $message)
    {
       
$this->where('message_date', '<', $message->message_date);

        return
$this;
    }

   
/**
     * @deprecated Use with('full') instead
     *
     * @return $this
     */
   
public function forFullView()
    {
       
$this->with('full');

        return
$this;
    }
}