From 763082f760f64a7a9f4f953b40c2f52c0b369aa3 Mon Sep 17 00:00:00 2001 From: Arie Timmerman Date: Mon, 25 Aug 2025 13:00:32 +0200 Subject: [PATCH] Fix separator variable name --- src/Attribute/Attribute.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Attribute/Attribute.php b/src/Attribute/Attribute.php index 65a562b..66a666f 100644 --- a/src/Attribute/Attribute.php +++ b/src/Attribute/Attribute.php @@ -191,8 +191,8 @@ protected function doRead(&$object, $attributes = []) public function getFullKey() { if ($this->parent != null && $this->parent->name != null) { - $seperator = $this->parent instanceof AttributeSchema ? ':' : '.'; - return $this->parent->getFullKey() . $seperator . $this->name; + $separator = $this->parent instanceof AttributeSchema ? ':' : '.'; + return $this->parent->getFullKey() . $separator . $this->name; } else { return $this->name; }