1 | <?php |
||
12 | class WebOutlook implements Generator |
||
13 | { |
||
14 | protected const BASE_URL = 'https://outlook.live.com/calendar/deeplink/compose?path=/calendar/action/compose&rru=addevent'; |
||
15 | |||
16 | /** @var string {@see https://www.php.net/manual/en/function.date.php} */ |
||
17 | protected $dateFormat = 'Y-m-d'; |
||
18 | protected $dateTimeFormat = 'Y-m-d\TH:i:s\Z'; |
||
19 | |||
20 | /** {@inheritdoc} */ |
||
21 | public function generate(Link $link): string |
||
49 | } |
||
50 |