18 lines
270 B
PHP
18 lines
270 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Holds the authentication interface.
|
||
|
* @package Sakura
|
||
|
*/
|
||
|
|
||
|
namespace Sakura\Chat;
|
||
|
|
||
|
/**
|
||
|
* Interface for authentication methods.
|
||
|
* @package Sakura
|
||
|
* @author Julian van de Groep <me@flash.moe>
|
||
|
*/
|
||
|
interface AuthInterface
|
||
|
{
|
||
|
public function attempt();
|
||
|
}
|