1
0
Fork 0
mirror of https://github.com/shlinkio/shlink.git synced 2025-04-01 22:35:07 +03:00

Fixed coding styles

This commit is contained in:
Alejandro Celaya 2022-10-22 10:03:28 +02:00
parent 8298f9d491
commit dbe35cf567

View file

@ -123,7 +123,7 @@ class UpdateGeoLiteDbTest extends TestCase
): void { ): void {
$this->dbUpdater->expects($this->once())->method('checkDbUpdate')->withAnyParameters()->willReturn($result); $this->dbUpdater->expects($this->once())->method('checkDbUpdate')->withAnyParameters()->willReturn($result);
$this->eventDispatcher->expects($this->exactly($expectedDispatches))->method('dispatch')->with( $this->eventDispatcher->expects($this->exactly($expectedDispatches))->method('dispatch')->with(
$this->equalTo(new GeoLiteDbCreated()) $this->equalTo(new GeoLiteDbCreated()),
); );
($this->listener)(); ($this->listener)();