From 6c1bf00170165607897b95906d9a06dacbd5fc09 Mon Sep 17 00:00:00 2001 From: Formatter Bot Date: Wed, 21 Oct 2020 21:12:50 +0000 Subject: [PATCH] Automated formatting changes --- Models/DepartmentMapper.php | 4 ++-- Models/PositionMapper.php | 4 ++-- Models/UnitMapper.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Models/DepartmentMapper.php b/Models/DepartmentMapper.php index 8fc028b..58b0091 100755 --- a/Models/DepartmentMapper.php +++ b/Models/DepartmentMapper.php @@ -50,11 +50,11 @@ final class DepartmentMapper extends DataMapperAbstract */ protected static array $belongsTo = [ 'unit' => [ - 'mapper' => UnitMapper::class, + 'mapper' => UnitMapper::class, 'external' => 'organization_department_unit', ], 'parent' => [ - 'mapper' => self::class, + 'mapper' => self::class, 'external' => 'organization_department_parent', ], ]; diff --git a/Models/PositionMapper.php b/Models/PositionMapper.php index 2f08202..36915e3 100755 --- a/Models/PositionMapper.php +++ b/Models/PositionMapper.php @@ -50,11 +50,11 @@ final class PositionMapper extends DataMapperAbstract */ protected static array $belongsTo = [ 'parent' => [ - 'mapper' => self::class, + 'mapper' => self::class, 'external' => 'organization_position_parent', ], 'department' => [ - 'mapper' => DepartmentMapper::class, + 'mapper' => DepartmentMapper::class, 'external' => 'organization_position_department', ], ]; diff --git a/Models/UnitMapper.php b/Models/UnitMapper.php index 34c1c36..9a6be04 100755 --- a/Models/UnitMapper.php +++ b/Models/UnitMapper.php @@ -51,7 +51,7 @@ final class UnitMapper extends DataMapperAbstract */ protected static array $ownsOne = [ 'image' => [ - 'mapper' => MediaMapper::class, + 'mapper' => MediaMapper::class, 'external' => 'organization_unit_image', ], ]; @@ -64,7 +64,7 @@ final class UnitMapper extends DataMapperAbstract */ protected static array $belongsTo = [ 'parent' => [ - 'mapper' => self::class, + 'mapper' => self::class, 'external' => 'organization_unit_parent', ], ];