Files
hdk-core/src/Enumerations/Http/Header/RFCs/RFC6750.php
2023-01-09 18:22:10 +08:00

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';
}