We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb835f commit c95ad24Copy full SHA for c95ad24
src/Normalizer/SlugNormalizer.php
@@ -51,6 +51,7 @@ public function normalize(string $text, array $context = []): string
51
$slug = \mb_substr($slug, 0, $length, 'UTF-8');
52
}
53
54
+ // @phpstan-ignore-next-line Because it thinks mb_substr() returns false on PHP 7.4
55
return $slug;
56
57
0 commit comments