UrlConstants.php 516 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * This file is part of the League.url library
  4. *
  5. * @license http://opensource.org/licenses/MIT
  6. * @link https://github.com/thephpleague/url/
  7. * @version 3.3.5
  8. * @package League.url
  9. *
  10. * For the full copyright and license information, please view the LICENSE
  11. * file that was distributed with this source code.
  12. */
  13. namespace League\Url;
  14. /**
  15. * Describe Library Constants
  16. *
  17. * @package League.url
  18. * @since 3.2.0
  19. */
  20. class UrlConstants
  21. {
  22. const SCHEME_REGEXP = '(http|ftp|ws)(s?)'; //supported protocol
  23. }