Files

11 lines
183 B
PHP
Raw Permalink Normal View History

2026-05-28 09:34:28 +02:00
<?php
namespace Sabre\VObject\TimezoneGuesser;
use DateTimeZone;
interface TimezoneFinder
{
public function find(string $tzid, bool $failIfUncertain = false): ?DateTimeZone;
}