eeprom/src/Auth/IAuth.php

8 lines
142 B
PHP
Raw Normal View History

2020-05-12 18:30:22 +00:00
<?php
namespace EEPROM\Auth;
2022-07-07 15:55:39 +00:00
interface IAuth {
2020-05-12 18:30:22 +00:00
public function getName(): string;
public function verifyToken(string $token): int;
}