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

getIOPReadingLeft() public method

public getIOPReadingLeft ( $patient )
    public function getIOPReadingLeft($patient)
    {
        if ($episode = $patient->getEpisodeForCurrentSubspecialty()) {
            if ($iop = $this->getElementForLatestEventInEpisode($episode, 'models\\Element_OphCiExamination_IntraocularPressure')) {
                return $iop->getReading('left');
            }
        }
    }
OphCiExamination_API