aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Config/IConfigHandler.php
blob: 9e8283cc58b8cf7c9babc9e404be1144144477d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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);
}