IConfigHandler.php 440 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCA\Files_External\Config;
  7. /**
  8. * Interface IConfigHandler
  9. *
  10. * @package OCA\Files_External\Config
  11. * @since 16.0.0
  12. */
  13. interface IConfigHandler {
  14. /**
  15. * @param mixed $optionValue
  16. * @return mixed the same type as $optionValue
  17. * @since 16.0.0
  18. */
  19. public function handle($optionValue);
  20. }