1
0
mirror of https://github.com/flarum/core.git synced 2025-07-29 20:50:28 +02:00

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;
}
}