Skip to content

Commit c7c4f3b

Browse files
committed
fix CS
1 parent 673fb05 commit c7c4f3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Metadata/Extractor/XmlExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ private function phpize(\SimpleXMLElement $array, string $key, string $type)
145145
case 'string':
146146
return (string) $array[$key];
147147
case 'integer':
148-
return (integer) $array[$key];
148+
return (int) $array[$key];
149149
case 'bool':
150150
return (bool) XmlUtils::phpize($array[$key]);
151151
}

0 commit comments

Comments
 (0)