From 800c5fd3666db06960df2031e8a71a447f44f52f Mon Sep 17 00:00:00 2001 From: William Date: Mon, 14 Mar 2022 10:00:19 +0100 Subject: [PATCH] Commit --- app/lib/App/Teamtable/Team.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/App/Teamtable/Team.php b/app/lib/App/Teamtable/Team.php index 91327fa..81e9216 100644 --- a/app/lib/App/Teamtable/Team.php +++ b/app/lib/App/Teamtable/Team.php @@ -21,7 +21,7 @@ class Team /** * PHP by default does not include multi byte functions. Therefore we use this */ - private function count_characters(string $string) + private function count_characters(string $string): int { return count(preg_split('//u', $string, -1, PREG_SPLIT_NO_EMPTY)); }