WorklistPatient::getScheduledTime PHP Method

getScheduledTime() public method

public getScheduledTime ( )
    public function getScheduledTime()
    {
        if ($this->when) {
            if ($this->when instanceof DateTime) {
                return $this->when->format('H:i');
            } else {
                return DateTime::createFromFormat('Y-m-d H:i:s', $this->when)->format('H:i');
            }
        }
    }