1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

Fix attribute serialisation event mutability

This commit is contained in:
Toby Zerner
2015-04-03 17:04:59 +10:30
parent 3cd7e307b3
commit cceb2b1249

View File

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