Skip to content

Commit

Permalink
mb_substr => substr
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikzogg committed Oct 3, 2021
1 parent d118b31 commit 9018383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Decoder/JsonxTypeDecoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private function decodeNode(\DOMNode $node)
{
$nodeName = $node->nodeName;

$nodeType = mb_substr($nodeName, 5);
$nodeType = substr($nodeName, 5);

if (self::DATATYPE_OBJECT === $nodeType) {
return $this->decodeObjectNode($node);
Expand Down

0 comments on commit 9018383

Please sign in to comment.