20 lines
341 B
PHP
20 lines
341 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ddeboer\Imap;
|
|
|
|
/**
|
|
* An IMAP server.
|
|
*/
|
|
interface ServerInterface
|
|
{
|
|
/**
|
|
* Authenticate connection.
|
|
*
|
|
* @param string $username Username
|
|
* @param string $password Password
|
|
*/
|
|
public function authenticate(string $username, string $password): ConnectionInterface;
|
|
}
|