fix broken docblock

This commit is contained in:
Dennis Eichhorn 2020-02-04 19:48:39 +01:00
parent 5ab9a32cb6
commit 21e8bb6019
2 changed files with 11 additions and 8 deletions

View File

@ -51,11 +51,19 @@ final class AccountMapper extends DataMapperAbstract
];
/**
* Has many relation.
* Has one relation.
*
* @var array<string, array<string, null|string>>
* @var array<string, array<string, string>>
* @since 1.0.0
*/ /**
*/
protected static array $ownsOne = [
'localization' => [
'mapper' => LocalizationMapper::class,
'src' => 'account_localization',
],
];
/**
* Has many relation.
*
* @var array<string, array<string, null|string>>

View File

@ -66,11 +66,6 @@ final class GroupMapper extends DataMapperAbstract
protected static string $createdAt = 'group_created';
/**
* Has many relation.
*
* @var array<string, array<string, null|string>>
* @since 1.0.0
*/ /**
* Has many relation.
*
* @var array<string, array<string, null|string>>