feat : login first

This commit is contained in:
2025-09-26 17:59:26 +08:00
parent 5890122a37
commit 7d09a6028a
7 changed files with 236 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Common\Interface;
interface LoginInterface
{
public function authenticate(string $username, string $password): array;
public function supports(string $type): bool;
}