. * * This file is a part of iCalcreator. */ namespace Kigkonsult\Icalcreator; /** * interface IcalInterface * * @author Kjell-Inge Gustafsson * @see https://en.wikipedia.org/wiki/Basic_access_authentication * @see https://tools.ietf.org/html/rfc7617 */ interface IcalInterface { /** * Class constants */ const VTIMEZONE = 'Vtimezone'; const STANDARD = 'Standard'; const DAYLIGHT = 'Daylight'; const VEVENT = 'Vevent'; const VTODO = 'Vtodo'; const VJOURNAL = 'Vjournal'; const VFREEBUSY = 'Vfreebusy'; const VALARM = 'Valarm'; }