Use static closures (#1652)

This commit is contained in:
Till Krüss
2026-03-09 13:30:46 -07:00
committed by GitHub
parent f57dfcbeea
commit 87390e7381
59 changed files with 253 additions and 249 deletions
@@ -68,7 +68,7 @@ class NodeConnectionStrategyTest extends TestCase
$this->mockConnection
->expects($this->once())
->method('executeCommand')
->with($this->callback(function ($command) {
->with($this->callback(static function ($command) {
return $command->getId() === 'UNWATCH';
}))
->willReturn('OK');
@@ -95,7 +95,7 @@ class NodeConnectionStrategyTest extends TestCase
$this->mockConnection
->expects($this->exactly(4))
->method('executeCommand')
->with($this->callback(function ($command) {
->with($this->callback(static function ($command) {
return $command->getId() === 'UNWATCH';
}))
->willReturnOnConsecutiveCalls(