mirror of
https://gitee.com/ctexthuang/hyperf-micro-svc.git
synced 2026-02-08 10:20:16 +08:00
10 lines
196 B
PHP
10 lines
196 B
PHP
<?php
|
|
|
|
namespace App\Common\Interface;
|
|
|
|
interface LoginInterface
|
|
{
|
|
public function authenticate(string $username, string $password): array;
|
|
|
|
public function supports(string $type): bool;
|
|
} |