aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Config/IConfigHandler.php
blob: 2f1604e232ba05d0fea2d8c1c76b3dda91e9c985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\Files_External\Config;

/**
 * Interface IConfigHandler
 *
 * @package OCA\Files_External\Config
 * @since 16.0.0
 */
interface IConfigHandler {
	/**
	 * @param mixed $optionValue
	 * @return mixed the same type as $optionValue
	 * @since 16.0.0
	 */
	public function handle($optionValue);
}