From a93ae03d50a3e23ac901b547c98fe7497d322277 Mon Sep 17 00:00:00 2001 From: Ignace Nyamagana Butera Date: Fri, 17 Nov 2017 09:06:05 +0100 Subject: [PATCH] bugfix method signature documentation --- docs/5.0/components/query.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/5.0/components/query.md b/docs/5.0/components/query.md index dd454e0e..ac4d3249 100644 --- a/docs/5.0/components/query.md +++ b/docs/5.0/components/query.md @@ -25,7 +25,7 @@ class Query implements ComponentInterface, \Countable, \IteratorAggregate public static function createFromParams(iterable $params, string $separator = '&'): self public static function extract(string $query, string $separator = '&', int $enc_type = self::RFC3986_ENCODING): array public static function parse(string $query, string $separator = '&', int $enc_type = self::RFC3986_ENCODING): array - public function __construct(?string $content = null): void + public function __construct(?string $content = null, string $separator = '&'): void public function append(string $query): self public function getPair(string $name, mixed $default = null): mixed public function getPairs(void): array