Current File : /home/escuelai/public_html/it/vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php
<?php

namespace Sabre\VObject\TimezoneGuesser;

use DateTimeZone;

interface TimezoneFinder
{
    public function find(string $tzid, bool $failIfUncertain = false): ?DateTimeZone;
}