2019-02-11 17:18:08 -05:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2026-02-09 04:53:58 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2019-02-11 17:18:08 -05:00
|
|
|
/**
|
2024-06-06 03:55:47 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-02-11 17:18:08 -05:00
|
|
|
*/
|
|
|
|
|
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);
|
|
|
|
|
}
|