Skip to content
This repository has been archived by the owner on May 21, 2022. It is now read-only.

Commit

Permalink
Update Groups.php
Browse files Browse the repository at this point in the history
HOTFIX-20170509 Did not account for the array key in cache files and what is expected by constructor
  • Loading branch information
knasher committed May 9, 2017
1 parent ee2a201 commit 56e6a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/View/Annotation/Groups.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ public function getGroups() {
*/
public static function __set_state(array $values)
{
return new self($values);
return new self(array('value' => $values['groups']));
}
}

0 comments on commit 56e6a8c

Please sign in to comment.