bug fixes / dbmapper fixes

This commit is contained in:
Dennis Eichhorn 2021-12-19 20:20:39 +01:00
parent 7a55819e9b
commit 954176b1df
6 changed files with 15 additions and 17 deletions

View File

@ -62,8 +62,6 @@ class AccountRelation
/** /**
* Constructor. * Constructor.
* *
* @param string $name Event name/title
*
* @since 1.0.0 * @since 1.0.0
*/ */
public function __construct() public function __construct()

View File

@ -88,7 +88,7 @@ class EventAttribute implements \JsonSerializable, ArrayableInterface
{ {
return [ return [
'id' => $this->id, 'id' => $this->id,
'item' => $this->item, 'event' => $this->event,
'type' => $this->type, 'type' => $this->type,
'value' => $this->value, 'value' => $this->value,
]; ];