Skip to content

Commit f48efe7

Browse files
Fix separator variable name (limosa-io#121)
1 parent 6137477 commit f48efe7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Attribute/Attribute.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ protected function doRead(&$object, $attributes = [])
191191
public function getFullKey()
192192
{
193193
if ($this->parent != null && $this->parent->name != null) {
194-
$seperator = $this->parent instanceof AttributeSchema ? ':' : '.';
195-
return $this->parent->getFullKey() . $seperator . $this->name;
194+
$separator = $this->parent instanceof AttributeSchema ? ':' : '.';
195+
return $this->parent->getFullKey() . $separator . $this->name;
196196
} else {
197197
return $this->name;
198198
}

0 commit comments

Comments
 (0)