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.
2 parents 5fd4172 + bde33a0 commit 2159c36Copy full SHA for 2159c36
tests/StubTest.php
@@ -274,11 +274,11 @@ public static function matcherProvider(): array
274
[1, Stub\Expected::once()],
275
[2, Stub\Expected::atLeastOnce()],
276
[3, Stub\Expected::exactly(3)],
277
- [1, Stub\Expected::once(fn(): bool => true), true],
278
- [2, Stub\Expected::atLeastOnce(fn(): array => []), []],
279
- [1, Stub\Expected::exactly(1, fn() => null), null],
280
- [1, Stub\Expected::exactly(1, fn(): string => 'hello world!'), 'hello world!'],
281
- [1, Stub\Expected::exactly(1, 'hello world!'), 'hello world!'],
+ [1, Stub\Expected::once(fn(): bool => true)],
+ [2, Stub\Expected::atLeastOnce(fn(): array => [])],
+ [1, Stub\Expected::exactly(1, fn() => null)],
+ [1, Stub\Expected::exactly(1, fn(): string => 'hello world!')],
+ [1, Stub\Expected::exactly(1, 'hello world!')],
282
];
283
}
284
0 commit comments