add token generator interface

This commit is contained in:
Yisroel Baum 2026-04-24 13:23:05 +03:00
parent cb73688a99
commit a0bea204b4
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -0,0 +1,8 @@
<?php
namespace App\Auth;
interface TokenGenerator
{
public function generate(): string;
}