Skip to content

Commit 16f111c

Browse files
Fix return statements
1 parent e0edcca commit 16f111c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Util/XmlUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public static function phpize($value)
219219

220220
switch (true) {
221221
case 'null' === $lowercaseValue:
222-
return;
222+
return null;
223223
case ctype_digit($value):
224224
$raw = $value;
225225
$cast = (int) $value;

0 commit comments

Comments
 (0)