Skip to content

Commit

Permalink
TASK: Rename $node->nodeName to $node->name
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed May 18, 2024
1 parent 1f844a1 commit 5f398b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Adjustment/TetheredNodeAdjustments.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ function () use ($tetheredNodeAggregate) {
$actualTetheredChildNodes = [];
foreach ($childNodes as $childNode) {
if ($childNode->classification->isTethered()) {
assert($childNode->nodeName !== null); // it's tethered!
$actualTetheredChildNodes[$childNode->nodeName->value] = $childNode;
assert($childNode->name !== null); // it's tethered!
$actualTetheredChildNodes[$childNode->name->value] = $childNode;
}
}

Expand Down

0 comments on commit 5f398b3

Please sign in to comment.