rosavox/lib/alveolata/auth/abstract/interface-server.php

34 lines
402 B
PHP
Raw Normal View History

2025-05-23 07:33:29 +00:00
<?php
namespace alveolata\auth;
/**
* @author Christian Fraß <frass@greenscale.de>
*/
interface interface_server
{
/**
* @author Christian Fraß <frass@greenscale.de>
*/
public function register(
string $username,
string $password
) : bool
;
/**
* @author Christian Fraß <frass@greenscale.de>
*/
public function login(
string $kind,
$parameters
) : bool
;
}
?>