This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/Chat/AuthInterface.php

18 lines
270 B
PHP
Raw Normal View History

2016-08-10 16:10:57 +00:00
<?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();
}