12 lines
No EOL
264 B
PHP
12 lines
No EOL
264 B
PHP
<?php
|
|
|
|
namespace ctiso\Role;
|
|
use ctiso\Database\Statement;
|
|
|
|
interface UserInterface {
|
|
function getUserByQuery(Statement $stmt);
|
|
function getUserByLogin($login);
|
|
function getUserById($id);
|
|
function getName();
|
|
function setSID($random, $result);
|
|
} |