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

getReport() public method

Convenience function to accese ticket report field.
public getReport ( ) : mixed
return mixed
    public function getReport()
    {
        foreach ($this->reversed_queue_assignments as $ass) {
            if ($ass->report) {
                return $ass->report;
            }
        }
        return '';
    }