We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
returnValue
1 parent 88dd761 commit 70569d4Copy full SHA for 70569d4
tests/lib/Cache/FileCacheTest.php
@@ -150,7 +150,8 @@ public function testGarbageCollectIgnoreLockedKeys($testException): void {
150
->method('filemtime')
151
->willReturn(100);
152
$mockStorage->expects($this->atLeastOnce())
153
- ->method('unlink')->willReturnOnConsecutiveCalls($this->throwException($testException), $this->returnValue(true));
+ ->method('unlink')
154
+ ->willReturnOnConsecutiveCalls($this->throwException($testException), true);
155
156
$this->instance->set('key1', 'value1');
157
$this->instance->set('key2', 'value2');
0 commit comments