Files

21 lines
365 B
PHP
Raw Permalink Normal View History

2026-06-01 21:23:12 -07:00
<?php
namespace Kanboard\Core\Security;
/**
* Optional Authentication Provider Interface
*
* @package security
* @author Frederic Guillot
*/
interface OptionalAuthenticationProviderInterface
{
/**
* Check if the authentication provider should be used
*
* @access public
* @return boolean
*/
public function isEnabled();
}