OEModule\OphCiExamination\components\OphCiExamination_API::getLetterLaserManagementComments PHP Method

getLetterLaserManagementComments() public method

get laser management comments.
public getLetterLaserManagementComments ( Patient $patient ) : string
$patient Patient
return string
    public function getLetterLaserManagementComments($patient)
    {
        if ($episode = $patient->getEpisodeForCurrentSubspecialty()) {
            if ($m = $this->getElementForLatestEventInEpisode($episode, 'models\\Element_OphCiExamination_Management')) {
                return $m->comments;
            }
        }
    }
OphCiExamination_API