Spatie\GoogleCalendar\Event::getSortDate PHP Method

getSortDate() public method

public getSortDate ( ) : string
return string
    public function getSortDate() : string
    {
        if ($this->startDate) {
            return $this->startDate;
        }
        if ($this->startDateTime) {
            return $this->startDateTime;
        }
        return '';
    }