mirror of
https://github.com/Neur0toxine/pock.git
synced 2025-04-08 19:52:01 +00:00
22 lines
282 B
PHP
22 lines
282 B
PHP
<?php
|
|
|
|
/**
|
|
* PHP 7.2
|
|
*
|
|
* @category RequestScheme
|
|
* @package Pock\Enum
|
|
*/
|
|
|
|
namespace Pock\Enum;
|
|
|
|
/**
|
|
* Class RequestScheme
|
|
*
|
|
* @category RequestScheme
|
|
* @package Pock\Enum
|
|
*/
|
|
final class RequestScheme
|
|
{
|
|
public const HTTP = 'http';
|
|
public const HTTPS = 'https';
|
|
}
|