From f77439f5e1c849c02fc13f753f339c0c63265954 Mon Sep 17 00:00:00 2001 From: Edgars Neimanis Date: Wed, 9 Feb 2022 11:40:27 +0200 Subject: [PATCH] function argument types fixed --- src/HtmlBuilder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HtmlBuilder.php b/src/HtmlBuilder.php index 896e1b19..84779365 100755 --- a/src/HtmlBuilder.php +++ b/src/HtmlBuilder.php @@ -442,7 +442,7 @@ public function attributes($attributes) * Build a single attribute element. * * @param string $key - * @param string $value + * @param string|bool|array|null $value * * @return string */ @@ -510,7 +510,7 @@ public function obfuscate($value) /** * Generate a meta tag. * - * @param string $name + * @param string|null $name * @param string $content * @param array $attributes *