Skip to content

Commit efd5936

Browse files
authored
Fix example (#33)
1 parent 5dfcee3 commit efd5936

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

matchers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ it("expects Foo to receive ::message() with the correct param only once", functi
265265
```php
266266
it("expects Foo to receive ::message() with the correct param a specified number of times", function() {
267267
expect(Foo::class)->toReceive('::message')->with('My Message')->times(2);
268-
$foo::message('My Message');
269-
$foo::message('My Message');
268+
Foo::message('My Message');
269+
Foo::message('My Message');
270270
});
271271
```
272272

0 commit comments

Comments
 (0)