From c1bd9d8cb38fa9bc73dd400f59d67b33357c0bce Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 19 Dec 2021 20:20:39 +0100 Subject: [PATCH] bug fixes / dbmapper fixes --- Models/TagMapper.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Models/TagMapper.php b/Models/TagMapper.php index 47c0848..7370c8c 100755 --- a/Models/TagMapper.php +++ b/Models/TagMapper.php @@ -48,11 +48,11 @@ final class TagMapper extends DataMapperFactory */ public const HAS_MANY = [ 'title' => [ - 'mapper' => TagL11nMapper::class, - 'table' => 'tag_l11n', - 'self' => 'tag_l11n_tag', - 'column' => 'title', - 'external' => null, + 'mapper' => TagL11nMapper::class, + 'table' => 'tag_l11n', + 'self' => 'tag_l11n_tag', + 'column' => 'title', + 'external' => null, ], ];