We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6137477 commit f48efe7Copy full SHA for f48efe7
src/Attribute/Attribute.php
@@ -191,8 +191,8 @@ protected function doRead(&$object, $attributes = [])
191
public function getFullKey()
192
{
193
if ($this->parent != null && $this->parent->name != null) {
194
- $seperator = $this->parent instanceof AttributeSchema ? ':' : '.';
195
- return $this->parent->getFullKey() . $seperator . $this->name;
+ $separator = $this->parent instanceof AttributeSchema ? ':' : '.';
+ return $this->parent->getFullKey() . $separator . $this->name;
196
} else {
197
return $this->name;
198
}
0 commit comments