mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
Fixed coding styles
This commit is contained in:
parent
52366b9dd4
commit
b7671f70da
@ -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']);
|
||||
|
@ -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]);
|
||||
|
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user