Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
28 lines
497 B
PHP
28 lines
497 B
PHP
<?php
|
|
|
|
namespace App\ExportResources\Account;
|
|
|
|
use App\ExportResources\ExportResource;
|
|
|
|
class LifeEventCategory extends ExportResource
|
|
{
|
|
protected $columns = [
|
|
'uuid',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
|
|
protected $properties = [
|
|
'core_monica_data',
|
|
];
|
|
|
|
public function data(): ?array
|
|
{
|
|
return [
|
|
'properties' => [
|
|
'translation_key' => $this->default_life_event_category_key,
|
|
],
|
|
];
|
|
}
|
|
}
|