1
0
mirror of https://github.com/flarum/core.git synced 2025-07-24 18:21:33 +02:00

Fix dud call in magic method

This commit is contained in:
Toby Zerner
2015-05-05 17:31:29 +09:30
parent 67bb84cf0c
commit e2ab767cb9

View File

@@ -108,7 +108,5 @@ abstract class BaseSerializer extends SerializerAbstract
array_unshift($arguments, $this);
return call_user_func_array(static::$relationships[$name], $arguments);
}
return parent::__call($name, $arguments);
}
}