Files
Kanboard-Prod/app/Core/Security/PreAuthenticationProviderInterface.php
Frederic Guillot a7f3e3bec5 PHPdoc cleanup
2016-03-04 21:11:12 -05:00

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();
}