mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
13 lines
192 B
PHP
13 lines
192 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use TTN\Tea\Domain\Model\Tea;
|
|
|
|
return [
|
|
Tea::class => [
|
|
'properties' => [
|
|
'ownerUid' => ['fieldName' => 'owner'],
|
|
],
|
|
],
|
|
];
|