From d9c3ed31449c95e73c2b265d34cf328a7b6f3914 Mon Sep 17 00:00:00 2001 From: ruudk Date: Wed, 13 Nov 2024 11:20:58 +0000 Subject: [PATCH] Prettify docs --- docs/class-reference.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/class-reference.md b/docs/class-reference.md index 26922b7fc..bbd0922c4 100644 --- a/docs/class-reference.md +++ b/docs/class-reference.md @@ -135,12 +135,13 @@ static function getStandardTypes(): array * Standard types not listed here remain untouched. * * @param array $types + * @param bool $partial Whether to replace only types listed in $types or all standard types * * @api * * @throws InvariantViolation */ -static function overrideStandardTypes(array $types): void +static function overrideStandardTypes(array $types, bool $partial = true): void ``` ```php