mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 09:48:40 +00:00
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.1
|
|
*
|
|
* @package phpOMS\Uri
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
declare(strict_types = 1);
|
|
|
|
namespace phpOMS\Uri;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Uri scheme.
|
|
*
|
|
* @package phpOMS\Uri
|
|
* @license OMS License 1.0
|
|
* @link http://website.orange-management.de
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class UriScheme extends Enum
|
|
{
|
|
/* public */ const HTTP = 0; /* Http */
|
|
/* public */ const FILE = 1; /* File */
|
|
/* public */ const MAILTO = 2; /* Mail */
|
|
/* public */ const FTP = 3; /* FTP */
|
|
/* public */ const HTTPS = 4; /* Https */
|
|
/* public */ const IRC = 5; /* IRC */
|
|
/* public */ const TEL = 6; /* Telephone */
|
|
/* public */ const TELNET = 7; /* Telnet */
|
|
/* public */ const SSH = 8; /* SSH */
|
|
/* public */ const SKYPE = 9; /* Skype */
|
|
/* public */ const SSL = 10; /* SSL */
|
|
/* public */ const NFS = 11; /* Network File System */
|
|
/* public */ const GEO = 12; /* Geo location */
|
|
/* public */ const MARKET = 13; /* Android Market */
|
|
/* public */ const ITMS = 14; /* iTunes */
|
|
}
|