Skip to content

Commit

Permalink
Added nested aggregate keys support in ParsesFlexibleAttributes trait…
Browse files Browse the repository at this point in the history
…. References #33
  • Loading branch information
toonvandenbos committed Aug 21, 2019
1 parent b2df2a9 commit 220aae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/ParsesFlexibleAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ protected function fillFlexibleAttributes(&$attributes, $group, $attribute, $val
if($attribute->key === true) {
$attributes[$attribute->name][] = $value;
} else {
$attributes[$attribute->name][$attribute->key] = $value;
data_set($attributes[$attribute->name], $attribute->key, $value);
}
}

Expand Down

0 comments on commit 220aae1

Please sign in to comment.