From 90705bdabe58ed520997af27bd2c821487593165 Mon Sep 17 00:00:00 2001 From: azjezz Date: Sat, 10 Jul 2021 02:45:21 +0100 Subject: [PATCH] [Str][Byte] remove unnecessary @var annotation Signed-off-by: azjezz --- src/Psl/Str/Byte/words.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Psl/Str/Byte/words.php b/src/Psl/Str/Byte/words.php index 5005b829..78eb280c 100644 --- a/src/Psl/Str/Byte/words.php +++ b/src/Psl/Str/Byte/words.php @@ -19,10 +19,8 @@ function words(string $string, ?string $characters_list = null): array { if (null === $characters_list) { - /** @var array $words */ $words = str_word_count($string, 2); } else { - /** @var array $words */ $words = str_word_count($string, 2, $characters_list); }