mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-16 11:16:38 +08:00
10 lines
183 B
PHP
10 lines
183 B
PHP
<?php
|
|
|
|
namespace Sabre\VObject\TimezoneGuesser;
|
|
|
|
use DateTimeZone;
|
|
|
|
interface TimezoneFinder
|
|
{
|
|
public function find(string $tzid, bool $failIfUncertain = false): ?DateTimeZone;
|
|
}
|