eeprom/src/Auth/IAuth.php

8 lines
142 B
PHP

<?php
namespace EEPROM\Auth;
interface IAuth {
public function getName(): string;
public function verifyToken(string $token): int;
}