aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/idatetimezone.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/idatetimezone.php')
-rw-r--r--lib/public/idatetimezone.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/public/idatetimezone.php b/lib/public/idatetimezone.php
new file mode 100644
index 00000000000..fb4c89538d5
--- /dev/null
+++ b/lib/public/idatetimezone.php
@@ -0,0 +1,21 @@
+<?php
+/**
+ * ownCloud
+ *
+ * @author Joas Schilling
+ * @copyright 2014 Joas Schilling nickvergessen@owncloud.com
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+namespace OCP;
+
+
+interface IDateTimeZone {
+ /**
+ * @return \DateTimeZone
+ */
+ public function getTimeZone();
+}