mirror of
https://github.com/Neur0toxine/pock.git
synced 2024-12-04 18:56:05 +03:00
23 lines
282 B
PHP
23 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';
|
|
}
|