Spatie\GoogleCalendar\Event::getGoogleCalendar PHP Method

getGoogleCalendar() protected static method

protected static getGoogleCalendar ( string $calendarId = null ) : GoogleCalendar
$calendarId string
return GoogleCalendar
    protected static function getGoogleCalendar($calendarId = null)
    {
        $calendarId = $calendarId ?? config('laravel-google-calendar.calendar_id');
        return GoogleCalendarFactory::createForCalendarId($calendarId);
    }