Skip to content

Commit 5dc8bc0

Browse files
[VarDumper] cs fix
1 parent da6aca6 commit 5dc8bc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -438,15 +438,15 @@ function xpathHasClass(className) {
438438
return this.current();
439439
}
440440
this.idx = this.idx < (this.nodes.length - 1) ? this.idx + 1 : 0;
441-
441+
442442
return this.current();
443443
},
444444
previous: function () {
445445
if (this.isEmpty()) {
446446
return this.current();
447447
}
448448
this.idx = this.idx > 0 ? this.idx - 1 : (this.nodes.length - 1);
449-
449+
450450
return this.current();
451451
},
452452
isEmpty: function () {
@@ -522,11 +522,11 @@ function showCurrent(state)
522522
"sf-dump-protected",
523523
"sf-dump-private",
524524
].map(xpathHasClass).join(' or ');
525-
525+
526526
var xpathResult = doc.evaluate('.//span[' + classMatches + '][contains(translate(child::text(), ' + xpathString(searchQuery.toUpperCase()) + ', ' + xpathString(searchQuery.toLowerCase()) + '), ' + xpathString(searchQuery.toLowerCase()) + ')]', root, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE, null);
527527
528528
while (node = xpathResult.iterateNext()) state.nodes.push(node);
529-
529+
530530
showCurrent(state);
531531
}, 400);
532532
});

0 commit comments

Comments
 (0)