Skip to content

Commit 041de26

Browse files
committed
Update documentation for IPv4 converter
1 parent f41674a commit 041de26

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/_data/menu.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ packages:
2626
Introduction: '/interfaces/7.0/'
2727
Tools:
2828
Contracts: '/interfaces/7.0/contracts/'
29+
Parsers:
2930
URI Parser: '/interfaces/7.0/uri-parser-builder/'
3031
Query Parser: '/interfaces/7.0/query-parser-builder/'
32+
Converters:
3133
IPv4 Converter: '/interfaces/7.0/ipv4/'
3234
IPv6 Converter: '/interfaces/7.0/ipv6/'
3335
IDN Converter: '/interfaces/7.0/idn/'

docs/components/7.0/modifiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Sorts the query according to its key values. The sorting rules are the same uses
143143
use League\Uri\Modifier;
144144

145145
echo Modifier::from("http://example.com/?kingkong=toto&foo=bar%20baz&kingkong=ape")
146-
->sortQuery($uri)
146+
->sortQuery()
147147
->getUri()
148148
->getQuery();
149149
//display "kingkong=toto&kingkong=ape&foo=bar%20baz"

docs/interfaces/7.0/uri-parser-builder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: RFC3986 - RFC3987 URI Parser
44
---
55

6-
URI parser and builder
6+
URI Parser and Builder
77
=======
88

99
PHP has been relying on the `parse_url` function to split URI into its component. But the

0 commit comments

Comments
 (0)