aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-02-11 09:23:29 +0000
committerMario <mario@mariovavti.com>2022-02-11 09:23:29 +0000
commit5468de2c6ad5187cd51201cda929c3e54cc2938f (patch)
tree3520a10665bd2956c6a032c508f63019fed19307 /vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php
parent6d8aabab2347feabdd804b609dcd4513f09f78d4 (diff)
downloadvolse-hubzilla-5468de2c6ad5187cd51201cda929c3e54cc2938f.tar.gz
volse-hubzilla-5468de2c6ad5187cd51201cda929c3e54cc2938f.tar.bz2
volse-hubzilla-5468de2c6ad5187cd51201cda929c3e54cc2938f.zip
composer libs minor version updates add new files
Diffstat (limited to 'vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php')
-rw-r--r--vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php b/vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php
new file mode 100644
index 000000000..5aa880a1c
--- /dev/null
+++ b/vendor/sabre/vobject/lib/TimezoneGuesser/TimezoneFinder.php
@@ -0,0 +1,10 @@
+<?php
+
+namespace Sabre\VObject\TimezoneGuesser;
+
+use DateTimeZone;
+
+interface TimezoneFinder
+{
+ public function find(string $tzid, bool $failIfUncertain = false): ?DateTimeZone;
+}