Skip to content

Commit 8db13c9

Browse files
committed
Another attempt at PHPStan fixing
1 parent ff1bf78 commit 8db13c9

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

phpstan.neon

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ parameters:
55
level: 8
66
paths:
77
- src
8-
checkMissingIterableValueType: false
8+
checkMissingIterableValueType: false
9+
excludes_analyse:
10+
- src/Filter/NormalizeLettersToAsciiFilter.php

src/Filter/NormalizeLettersToAsciiFilter.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ public function filter(string $string): string
138138
{
139139
// Maps special characters (with diacritics) to their base character followed by the diacritical mark
140140
// Examples: Ú => U´, á => a`
141-
/** @phpstan-ignore-next-line */
142141
$string = \Normalizer::normalize($string, \Normalizer::FORM_D);
143142

144143
// Remove diacritics

0 commit comments

Comments
 (0)