OEModule\PatientTicketing\models\Ticket::getPastQueueAssignments PHP Method

getPastQueueAssignments() public method

Get the past Queue Assignments for the ticket.
public getPastQueueAssignments ( ) : array
return array
    public function getPastQueueAssignments()
    {
        if ($ass_size = count($this->queue_assignments)) {
            return array_slice($this->queue_assignments, 0, $ass_size - 1);
        }
        return array();
    }