implement localization

This commit is contained in:
Dennis Eichhorn 2020-03-22 18:42:34 +01:00
parent ec53157be2
commit eb121e3786
3 changed files with 24 additions and 0 deletions

View File

@ -59,6 +59,14 @@ final class DepartmentMapper extends DataMapperAbstract
],
];
/**
* Model to use by the mapper.
*
* @var string
* @since 1.0.0
*/
protected static string $model = Department::class;
/**
* Primary table.
*

View File

@ -59,6 +59,14 @@ final class PositionMapper extends DataMapperAbstract
],
];
/**
* Model to use by the mapper.
*
* @var string
* @since 1.0.0
*/
protected static string $model = Position::class;
/**
* Primary table.
*

View File

@ -54,6 +54,14 @@ final class UnitMapper extends DataMapperAbstract
],
];
/**
* Model to use by the mapper.
*
* @var string
* @since 1.0.0
*/
protected static string $model = Unit::class;
/**
* Primary table.
*