Skip to content

Commit 0dc479d

Browse files
keradusfabpot
authored andcommitted
Fix docblocks to comments
1 parent c236349 commit 0dc479d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Encoder/XmlEncoder.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -313,11 +313,9 @@ private function buildXml(\DOMElement $parentNode, $data, $xmlRootNodeName = nul
313313
} elseif ($key === '#') {
314314
$append = $this->selectNodeType($parentNode, $data);
315315
} elseif (is_array($data) && false === is_numeric($key)) {
316-
/**
317-
* Is this array fully numeric keys?
318-
*/
316+
// Is this array fully numeric keys?
319317
if (ctype_digit(implode('', array_keys($data)))) {
320-
/**
318+
/*
321319
* Create nodes to append to $parentNode based on the $key of this array
322320
* Produces <xml><item>0</item><item>1</item></xml>
323321
* From array("item" => array(0,1));.

0 commit comments

Comments
 (0)