Exception
1 year ago
AppendStream.php
2 months ago
BufferStream.php
2 months ago
CachingStream.php
2 months ago
DroppingStream.php
2 months ago
FnStream.php
2 months ago
Header.php
2 months ago
HttpFactory.php
1 year ago
InflateStream.php
1 year ago
LazyOpenStream.php
1 year ago
LimitStream.php
2 months ago
Message.php
2 months ago
MessageTrait.php
2 months ago
MimeType.php
2 months ago
MultipartStream.php
2 months ago
NoSeekStream.php
2 months ago
PumpStream.php
2 months ago
Query.php
1 year ago
Request.php
2 months ago
Response.php
2 months ago
Rfc3986.php
2 months ago
Rfc7230.php
2 months ago
ServerRequest.php
2 months ago
Stream.php
2 months ago
StreamDecoratorTrait.php
2 months ago
StreamWrapper.php
2 months ago
UploadedFile.php
2 months ago
Uri.php
2 months ago
UriComparator.php
2 months ago
UriNormalizer.php
2 months ago
UriResolver.php
2 months ago
Utils.php
2 months ago
Rfc3986.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace GuzzleHttp\Psr7; |
| 6 | |
| 7 | /** |
| 8 | * @internal |
| 9 | */ |
| 10 | final class Rfc3986 |
| 11 | { |
| 12 | /** |
| 13 | * Sub-delims for use in a regex. |
| 14 | * |
| 15 | * @see https://datatracker.ietf.org/doc/html/rfc3986#section-2.2 |
| 16 | */ |
| 17 | public const CHAR_SUB_DELIMS = '!\$&\'\(\)\*\+,;='; |
| 18 | |
| 19 | /** |
| 20 | * Unreserved characters for use in a regex. |
| 21 | * |
| 22 | * @see https://datatracker.ietf.org/doc/html/rfc3986#section-2.3 |
| 23 | */ |
| 24 | public const CHAR_UNRESERVED = 'a-zA-Z0-9_\-\.~'; |
| 25 | } |
| 26 |