2024-10-21 02:56:56 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Exports\ZipExportModels;
|
|
|
|
|
2024-10-21 19:13:41 +08:00
|
|
|
use JsonSerializable;
|
2024-10-21 02:56:56 +08:00
|
|
|
|
2024-10-21 19:13:41 +08:00
|
|
|
abstract class ZipExportModel implements JsonSerializable
|
2024-10-21 02:56:56 +08:00
|
|
|
{
|
2024-10-21 19:13:41 +08:00
|
|
|
/**
|
|
|
|
* Handle the serialization to JSON.
|
|
|
|
* For these exports, we filter out optional (represented as nullable) fields
|
|
|
|
* just to clean things up and prevent confusion to avoid null states in the
|
|
|
|
* resulting export format itself.
|
|
|
|
*/
|
|
|
|
public function jsonSerialize(): array
|
|
|
|
{
|
|
|
|
$publicProps = get_object_vars(...)->__invoke($this);
|
|
|
|
return array_filter($publicProps, fn ($value) => $value !== null);
|
|
|
|
}
|
2024-10-21 02:56:56 +08:00
|
|
|
}
|