create auth tokeizer interface

This commit is contained in:
Yisroel Baum 2025-09-30 10:52:21 +03:00
parent 814346437a
commit b23b939e9a
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -0,0 +1,8 @@
<?php
namespace Yisroel\DigiWill\Module\Auth;
interface AuthTokenizer
{
public function generateToken(): string;
}