Files
service_dav/lib/vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php
T
2026-07-14 18:24:31 -04:00

11 lines
183 B
PHP

<?php
namespace Sabre\VObject\TimezoneGuesser;
use DateTimeZone;
interface TimezoneFinder
{
public function find(string $tzid, bool $failIfUncertain = false): ?DateTimeZone;
}