addType('itemId', 'integer'); $this->addType('created', 'integer'); $this->addType('expire', 'integer'); $this->addType('permissions', 'integer'); } /** * Specify data which should be serialized to JSON * @link http://php.net/manual/en/jsonserializable.jsonserialize.php * @return mixed data which can be serialized by json_encode, * which is a value of any type other than a resource. * @since 5.4.0 */ function jsonSerialize() { return [ 'acl_id' => $this->getId(), 'item_id' => $this->getItemId(), 'item_guid' => $this->getItemGuid(), 'user_id' => $this->getUserid(), 'group_id' => $this->getGroupId(), 'created' => $this->getCreated(), 'expire' => $this->getExpire(), 'permissions' => $this->getPermissions(), ]; } }