7 lines
142 B
PHP
7 lines
142 B
PHP
<?php
|
|
namespace EEPROM\Auth;
|
|
|
|
interface IAuth {
|
|
public function getName(): string;
|
|
public function verifyToken(string $token): int;
|
|
}
|