Skip to content

Commit 9349424

Browse files
committed
Fix parentheses
1 parent fa7d627 commit 9349424

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Utils/XML.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public static function processTransforms(
106106
$inclusiveNamespaces = $transform->getInclusiveNamespaces();
107107
if ($inclusiveNamespaces !== null) {
108108
$prefixes = $inclusiveNamespaces->getPrefixes();
109-
if (count($prefixes > 0)) {
109+
if (count($prefixes) > 0) {
110110
$prefixList = $prefixes;
111111
}
112112
}
@@ -141,4 +141,4 @@ public static function processTransforms(
141141

142142
return self::canonicalizeData($data, $canonicalMethod, $arXPath, $prefixList);
143143
}
144-
}
144+
}

0 commit comments

Comments
 (0)