mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

Relates to https://github.com/php/php-src/pull/14461/ and https://wiki.php.net/rfc/url_parsing_api
23 lines
410 B
PHP
23 lines
410 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
namespace Uri {
|
|
/** @strict-properties */
|
|
class UriException extends \Exception
|
|
{
|
|
}
|
|
|
|
/** @strict-properties */
|
|
class InvalidUriException extends \Uri\UriException
|
|
{
|
|
}
|
|
}
|
|
|
|
namespace Uri\WhatWg {
|
|
/** @strict-properties */
|
|
class InvalidUrlException extends \Uri\InvalidUriException
|
|
{
|
|
public readonly array $errors;
|
|
}
|
|
}
|