21 lines
391 B
PHP
21 lines
391 B
PHP
<?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();
|
|
}
|