Skip to content

Commit

Permalink
Fix struct to array
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyennv committed Feb 27, 2016
1 parent 28c43ef commit a8b5381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public function toArray($name = null)
}
elseif($v instanceof \Zimbra\Enum\Base)
{
$arr[$key] = $v->value();
$arr[$key][] = $v->value();
}
else
{
Expand Down

0 comments on commit a8b5381

Please sign in to comment.