12345678910111213141516171819202122232425 |
- <?php
- /**
- * This file is part of the League.url library
- *
- * @license http://opensource.org/licenses/MIT
- * @link https://github.com/thephpleague/url/
- * @version 3.3.5
- * @package League.url
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace League\Url;
- /**
- * Describe Library Constants
- *
- * @package League.url
- * @since 3.2.0
- */
- class UrlConstants
- {
- const SCHEME_REGEXP = '(http|ftp|ws)(s?)'; //supported protocol
- }
|