aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneGuesser.php
blob: 5e193bb5213e8481dd26302e8fc307bbd2416ebe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace Sabre\VObject\TimezoneGuesser;

use DateTimeZone;
use Sabre\VObject\Component\VTimeZone;

interface TimezoneGuesser
{
    public function guess(VTimeZone $vtimezone, bool $failIfUncertain = false): ?DateTimeZone;
}