Codestyle fixes.

This commit is contained in:
Mikolaj Gogula
2017-10-17 11:33:11 +02:00
parent 16a2349d86
commit 08d18b1dc1
2 changed files with 11 additions and 9 deletions

View File

@@ -67,11 +67,7 @@ class UrlShortenerTest extends TestCase
public function setUrlShortener($isUrlValidationExists)
{
$this->urlShortener = new UrlShortener(
$this->httpClient->reveal(),
$this->em->reveal(),
$this->cache,
UrlShortener::DEFAULT_CHARS,
$isUrlValidationExists
$this->httpClient->reveal(), $this->em->reveal(), $this->cache, $isUrlValidationExists, UrlShortener::DEFAULT_CHARS
);
}