aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/icewind/smb/src/ITimeZoneProvider.php
blob: dba3b58132e6f86347af57429423c82782427833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**
 * SPDX-FileCopyrightText: 2018 Robin Appelman <robin@icewind.nl>
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace Icewind\SMB;

interface ITimeZoneProvider {
	/**
	 * Get the timezone of the smb server
	 *
	 * @param string $host
	 * @return string
	 */
	public function get(string $host): string;
}