mirror of
https://github.com/aoaostar/toolbox.git
synced 2025-12-28 15:31:06 +00:00
16 lines
198 B
PHP
16 lines
198 B
PHP
<?php
|
|
|
|
|
|
namespace oauth;
|
|
|
|
|
|
use think\Response;
|
|
|
|
interface Oauth
|
|
{
|
|
public function __construct($config, $params);
|
|
|
|
public function oauth(): Response;
|
|
|
|
public function callback(): array;
|
|
} |