From fef5390a629e26560b8ba7858c63ceda4727d470 Mon Sep 17 00:00:00 2001 From: Mikolaj Gogula Date: Tue, 17 Oct 2017 11:35:32 +0200 Subject: [PATCH] Codestyle fixes. --- module/Core/test/Service/UrlShortenerTest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/module/Core/test/Service/UrlShortenerTest.php b/module/Core/test/Service/UrlShortenerTest.php index 0552ef5a..4e7c9547 100644 --- a/module/Core/test/Service/UrlShortenerTest.php +++ b/module/Core/test/Service/UrlShortenerTest.php @@ -67,7 +67,11 @@ class UrlShortenerTest extends TestCase public function setUrlShortener($isUrlValidationExists) { $this->urlShortener = new UrlShortener( - $this->httpClient->reveal(), $this->em->reveal(), $this->cache, $isUrlValidationExists, UrlShortener::DEFAULT_CHARS + $this->httpClient->reveal(), + $this->em->reveal(), + $this->cache, + $isUrlValidationExists, + UrlShortener::DEFAULT_CHARS ); }