File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff 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/'
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ Sorts the query according to its key values. The sorting rules are the same uses
143143use League\Uri\Modifier;
144144
145145echo 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"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ layout: default
33title : RFC3986 - RFC3987 URI Parser
44---
55
6- URI parser and builder
6+ URI Parser and Builder
77=======
88
99PHP has been relying on the ` parse_url ` function to split URI into its component. But the
You can’t perform that action at this time.
0 commit comments