Files
kanboard/app/Core/Security/PreAuthenticationProviderInterface.php
T

21 lines
391 B
PHP
Raw Normal View History

2026-06-01 21:23:12 -07:00
<?php
namespace Kanboard\Core\Security;
/**
* Pre-Authentication Provider Interface
*
* @package security
* @author Frederic Guillot
*/
interface PreAuthenticationProviderInterface extends AuthenticationProviderInterface
{
/**
* Get user object
*
* @access public
* @return \Kanboard\Core\User\UserProviderInterface
*/
public function getUser();
}