easyappointments/vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php

11 lines
183 B
PHP
Executable File

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