2
0
Fork 0
forked from flashii/eeprom
eeprom-nabucco/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;
}