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