nextcloud/lib/public/idatetimezone.php

22 lines
353 B
PHP
Raw Normal View History

2014-12-16 17:34:55 +03:00
<?php
/**
* ownCloud
2014-12-16 17:34:55 +03:00
*
* @author Joas Schilling
* @copyright 2014 Joas Schilling nickvergessen@owncloud.com
2014-12-16 17:34:55 +03:00
*
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
2014-12-16 17:34:55 +03:00
*/
2014-12-16 17:34:55 +03:00
namespace OCP;
interface IDateTimeZone {
/**
* @return \DateTimeZone
*/
public function getTimeZone();
}