diff --git a/src/Collections/TInsensitiveCaseKey.php b/src/Collections/TInsensitiveCaseKey.php index 9e1f794..4590630 100644 --- a/src/Collections/TInsensitiveCaseKey.php +++ b/src/Collections/TInsensitiveCaseKey.php @@ -8,8 +8,10 @@ namespace jrosset\Collections; trait TInsensitiveCaseKey { /** * @inheritDoc + * + * @noinspection PhpMissingReturnTypeInspection */ - protected function _normalizeKey (int|string $key): int|string { + protected function _normalizeKey ($key) { return mb_strtolower($key); } } \ No newline at end of file