diff --git a/module/CLI/test/Command/ShortUrl/ListShortUrlsCommandTest.php b/module/CLI/test/Command/ShortUrl/ListShortUrlsCommandTest.php index dfd1a028..b1356e11 100644 --- a/module/CLI/test/Command/ShortUrl/ListShortUrlsCommandTest.php +++ b/module/CLI/test/Command/ShortUrl/ListShortUrlsCommandTest.php @@ -73,7 +73,7 @@ class ListShortUrlsCommandTest extends TestCase } $this->shortUrlService->expects($this->once())->method('listShortUrls')->with( - $this->equalTo(ShortUrlsParams::emptyInstance()) + $this->equalTo(ShortUrlsParams::emptyInstance()), )->willReturn(new Paginator(new ArrayAdapter($data))); $this->commandTester->setInputs(['n']); diff --git a/module/CLI/test/Command/ShortUrl/ResolveUrlCommandTest.php b/module/CLI/test/Command/ShortUrl/ResolveUrlCommandTest.php index 3b063ab4..609a921a 100644 --- a/module/CLI/test/Command/ShortUrl/ResolveUrlCommandTest.php +++ b/module/CLI/test/Command/ShortUrl/ResolveUrlCommandTest.php @@ -53,7 +53,7 @@ class ResolveUrlCommandTest extends TestCase $shortCode = $identifier->shortCode; $this->urlResolver->expects($this->once())->method('resolveShortUrl')->with( - $this->equalTo($identifier) + $this->equalTo($identifier), )->willThrowException(ShortUrlNotFoundException::fromNotFound($identifier)); $this->commandTester->execute(['shortCode' => $shortCode]); diff --git a/module/CLI/test/Util/ShlinkTableTest.php b/module/CLI/test/Util/ShlinkTableTest.php index a9a6f3f5..6b7e00a3 100644 --- a/module/CLI/test/Util/ShlinkTableTest.php +++ b/module/CLI/test/Util/ShlinkTableTest.php @@ -32,7 +32,7 @@ class ShlinkTableTest extends TestCase $footerTitle = 'Footer'; $this->baseTable->expects($this->once())->method('setStyle')->with( - $this->isInstanceOf(TableStyle::class) + $this->isInstanceOf(TableStyle::class), )->willReturnSelf(); $this->baseTable->expects($this->once())->method('setHeaders')->with( $this->equalTo($headers),