Skip to content

Commit 130375b

Browse files
keradusfabpot
authored andcommitted
chore: PHP CS Fixer fixes
1 parent 91443fe commit 130375b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TextSanitizer/UrlSanitizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ private static function matchAllowedHostParts(array $uriParts, array $trustedPar
132132
{
133133
// Check each chunk of the domain is valid
134134
foreach ($trustedParts as $key => $trustedPart) {
135-
if (!array_key_exists($key, $uriParts) || $uriParts[$key] !== $trustedPart) {
135+
if (!\array_key_exists($key, $uriParts) || $uriParts[$key] !== $trustedPart) {
136136
return false;
137137
}
138138
}

0 commit comments

Comments
 (0)