mirror of
http://124.126.16.154:8888/singularity/HyperfDevelopmentKitCore.git
synced 2026-01-15 01:55:05 +08:00
30 lines
686 B
PHP
30 lines
686 B
PHP
<?php
|
|
/**
|
|
* RFC6750.php@hyperf-development-kit
|
|
*
|
|
* @author 李东云<dongyun.li@luxcreo.cn>
|
|
* Powered by PhpStorm
|
|
* Created on 2022/4/28
|
|
*/
|
|
|
|
namespace Singularity\HDK\Core\Enumerations\Http\Header\RFCs;
|
|
|
|
/**
|
|
* Singularity\HyperfDevelopmentKit\Utils\Enumerations\Http\RFCs\RFC6750@hyperf-development-kit
|
|
*
|
|
* @author 李东云<dongyun.li@luxcreo.cn>
|
|
* Powered by PhpStorm
|
|
* Created on 2022/4/28
|
|
*/
|
|
interface RFC6750
|
|
{
|
|
/**
|
|
* bearer tokens to access OAuth 2.0-protected resources
|
|
*
|
|
* @codingStandardsIgnoreStart
|
|
* @link https://datatracker.ietf.org/doc/html/rfc6750 RFC 6750
|
|
* @codingStandardsIgnoreEnd
|
|
*/
|
|
public const Bearer = 'Bearer';
|
|
}
|