0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-15 00:43:23 +00:00
nextcloud_server/lib/public/IDateTimeZone.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
457 B
PHP
Raw Permalink Normal View History

2014-12-16 14:34:55 +00:00
<?php
2014-12-16 14:34:55 +00:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2014-12-16 14:34:55 +00:00
*/
namespace OCP;
/**
* Interface IDateTimeZone
*
* @since 8.0.0
*/
2014-12-16 14:34:55 +00:00
interface IDateTimeZone {
/**
* @param bool|int $timestamp
2014-12-16 14:34:55 +00:00
* @return \DateTimeZone
* @since 8.0.0 - parameter $timestamp was added in 8.1.0
2014-12-16 14:34:55 +00:00
*/
public function getTimeZone($timestamp = false);
2014-12-16 14:34:55 +00:00
}