autoformat

This commit is contained in:
Dennis Eichhorn 2020-02-22 15:29:49 +01:00
parent 1ea1f65dca
commit 859b0281da
2 changed files with 3 additions and 3 deletions

View File

@ -48,12 +48,12 @@ final class WikiCategoryMapper extends DataMapperAbstract
*/ */
protected static array $belongsTo = [ protected static array $belongsTo = [
'parent' => [ 'parent' => [
'mapper' => WikiCategoryMapper::class, 'mapper' => self::class,
'self' => 'wiki_category_parent', 'self' => 'wiki_category_parent',
], ],
'app' => [ 'app' => [
'mapper' => WikiAppMapper::class, 'mapper' => WikiAppMapper::class,
'self' => 'wiki_category_app' 'self' => 'wiki_category_app',
], ],
]; ];

View File

@ -71,7 +71,7 @@ final class WikiDocMapper extends DataMapperAbstract
], ],
'app' => [ 'app' => [
'mapper' => WikiAppMapper::class, 'mapper' => WikiAppMapper::class,
'self' => 'wiki_article_app' 'self' => 'wiki_article_app',
], ],
]; ];