Use global namespace+minor fixes

This commit is contained in:
Dennis Eichhorn 2019-02-04 22:29:55 +01:00
parent 037b63ba20
commit 3bd882c343

View File

@ -38,6 +38,12 @@ final class EmployeeMapper extends DataMapperAbstract
'hr_staff_active' => ['name' => 'hr_staff_active', 'type' => 'bool', 'internal' => 'isActive'],
];
/**
* Belongs to.
*
* @var array<string, array<string, string>>
* @since 1.0.0
*/
protected static $belongsTo = [
'account' => [
'mapper' => AccountMapper::class,