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

12 lines
232 B
PHP
Executable File

<?php
namespace Sabre\VObject\TimezoneGuesser;
use DateTimeZone;
use Sabre\VObject\Component\VTimeZone;
interface TimezoneGuesser
{
public function guess(VTimeZone $vtimezone, bool $failIfUncertain = false): ?DateTimeZone;
}