Fix attribute serialisation event mutability

This commit is contained in:
Toby Zerner 2015-04-03 17:04:59 +10:30
parent 0bcaaaa9b9
commit 6f67b8c247

View File

@ -12,6 +12,6 @@ class SerializeAttributes
{
$this->serializer = $serializer;
$this->model = $model;
$this->attributes = $attributes;
$this->attributes = &$attributes;
}
}