Skip to content

Commit

Permalink
style: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Apr 25, 2023
1 parent a5471fd commit 2e25eb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Factories/TestCaseMethodFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function getClosure(TestCase $concrete): Closure
$method = $this;

return function () use ($testCase, $method, $closure): mixed { // @phpstan-ignore-line
/* @var TestCase $this */
/* @var TestCase $this */
$testCase->proxies->proxy($this);
$method->proxies->proxy($this);

Expand Down
2 changes: 1 addition & 1 deletion tests/Features/Expect/HigherOrder/methods.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function ($book) {
->attributes()->scoped(fn ($attributes) => $attributes
->name->toBe('Has Methods')
->quantity->toBe(20)
)
)
);
});

Expand Down

0 comments on commit 2e25eb5

Please sign in to comment.