mirror of
http://124.126.16.154:8888/singularity/HyperfDevelopmentKitCore.git
synced 2026-01-15 01:55:05 +08:00
30 lines
658 B
PHP
30 lines
658 B
PHP
<?php
|
|
/**
|
|
* RFC7617.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\RFC7617@hyperf-development-kit
|
|
*
|
|
* @author 李东云<dongyun.li@luxcreo.cn>
|
|
* Powered by PhpStorm
|
|
* Created on 2022/4/28
|
|
*/
|
|
interface RFC7617
|
|
{
|
|
/**
|
|
* base64-encoded credentials.
|
|
*
|
|
* @codingStandardsIgnoreStart
|
|
* @link https://datatracker.ietf.org/doc/html/rfc7617 RFC-7617
|
|
* @codingStandardsIgnoreEnd
|
|
*/
|
|
public const BASIC = 'Basic';
|
|
}
|