mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 14:07:04 +03:00
15 lines
No EOL
267 B
PHP
15 lines
No EOL
267 B
PHP
<?php
|
|
|
|
namespace RainLoop\Providers\Login;
|
|
|
|
interface LoginInterface
|
|
{
|
|
/**
|
|
* @param string $sEmail
|
|
* @param string $sLogin
|
|
* @param string $sPassword
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function ProvideParameters(&$sEmail, &$sLogin, &$sPassword);
|
|
} |