From 75b81758244c4e18a36925ddb22656067339bd85 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Thu, 3 May 2018 18:05:16 +0200 Subject: [PATCH] Fixed coding styles in config file --- module/Rest/config/dependencies.config.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/module/Rest/config/dependencies.config.php b/module/Rest/config/dependencies.config.php index d260fde0..72198c3f 100644 --- a/module/Rest/config/dependencies.config.php +++ b/module/Rest/config/dependencies.config.php @@ -61,7 +61,11 @@ return [ Action\ShortCode\ResolveUrlAction::class => [Service\UrlShortener::class, 'translator'], Action\Visit\GetVisitsAction::class => [Service\VisitsTracker::class, 'translator', 'Logger_Shlink'], Action\ShortCode\ListShortCodesAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink'], - Action\ShortCode\EditShortCodeTagsAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink'], + Action\ShortCode\EditShortCodeTagsAction::class => [ + Service\ShortUrlService::class, + 'translator', + 'Logger_Shlink', + ], Action\Tag\ListTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class], Action\Tag\DeleteTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class], Action\Tag\CreateTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class],