blob: f7e95f96858431e9fd771430996872149f72f33c [file] [log] [blame]
<?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;
}