Files
nibiru-framework.com/core/i/auth.php
2017-06-16 12:21:21 +02:00

17 lines
302 B
PHP

<?php
namespace Nibiru;
/**
* User - stephan
* Date - 01.02.17
* Time - 17:18
* @author - alllinux.de GbR
* @category - [PLEASE SPECIFIY]
* @license - BSD License
*/
interface IAuth
{
const NIBIRU_SECURITY = "SECURITY";
public function auth( $username, $password );
}