eeprom/src/Auth/AuthInterface.php

8 lines
150 B
PHP
Raw Normal View History

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