blob: 5aa880a1c3992781b0faa7c80cb18a4a6b81af14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace Sabre\VObject\TimezoneGuesser;
use DateTimeZone;
interface TimezoneFinder
{
public function find(string $tzid, bool $failIfUncertain = false): ?DateTimeZone;
}
|