From 5f398b3f1733ec2ed3989a0fa28f00fd4895f312 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Sat, 18 May 2024 16:53:33 +0200 Subject: [PATCH] TASK: Rename `$node->nodeName` to `$node->name` --- src/Adjustment/TetheredNodeAdjustments.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Adjustment/TetheredNodeAdjustments.php b/src/Adjustment/TetheredNodeAdjustments.php index d3aa41b..213e6a5 100644 --- a/src/Adjustment/TetheredNodeAdjustments.php +++ b/src/Adjustment/TetheredNodeAdjustments.php @@ -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; } }