0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-04 20:14:50 +00:00
nextcloud_server/lib/public/Authentication/TwoFactorAuth/IProvidesIcons.php
Andy Scherzinger dae7c159f7
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-24 13:11:22 +02:00

35 lines
676 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\Authentication\TwoFactorAuth;
/**
* Interface for two-factor providers that provide dark and light provider
* icons
*
* @since 15.0.0
*/
interface IProvidesIcons extends IProvider {
/**
* Get the path to the light (white) icon of this provider
*
* @return String
*
* @since 15.0.0
*/
public function getLightIcon(): String;
/**
* Get the path to the dark (black) icon of this provider
*
* @return String
*
* @since 15.0.0
*/
public function getDarkIcon(): String;
}