2014-12-16 17:34:55 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* ownCloud
|
2014-12-16 17:34:55 +03:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* @author Joas Schilling
|
|
|
|
* @copyright 2014 Joas Schilling nickvergessen@owncloud.com
|
2014-12-16 17:34:55 +03:00
|
|
|
*
|
2015-02-26 13:37:37 +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
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-12-16 17:34:55 +03:00
|
|
|
namespace OCP;
|
|
|
|
|
|
|
|
|
|
|
|
interface IDateTimeZone {
|
|
|
|
/**
|
|
|
|
* @return \DateTimeZone
|
|
|
|
*/
|
|
|
|
public function getTimeZone();
|
|
|
|
}
|