Skip to content

Commit 779843f

Browse files
committed
fixed psalm issues
1 parent 323b47b commit 779843f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

tests/Base/ClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ abstract class ClientTest extends TestCase
2525
abstract public function createClient(): ClientInterface;
2626

2727
/**
28-
* @return iterable<array<string>>
28+
* @return array<array<string>>
2929
*/
30-
public function connectionAliases(): iterable
30+
public function connectionAliases(): array
3131
{
3232
return [['bolt'], ['http'], ['cluster']];
3333
}

tests/Integration/HttpConsistencyTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ public function testConsistencyTransaction(string $alias): void
5959
self::assertEquals(['name' => 'bbb'], $results->last()->get('n'));
6060
}
6161

62+
/**
63+
* @return list<list<string>>
64+
*/
6265
public function aliases(): array
6366
{
6467
return [

0 commit comments

Comments
 (0)