Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function beforeAll(Closure $closure): void
/**
* Runs the given closure before each test in the current file.
*
* @param-closure-this TestCase $closure
* @param-closure-this TestCall $closure
*
* @return HigherOrderTapProxy<Expectable|TestCall|TestCase>|Expectable|TestCall|TestCase|mixed
*/
Expand Down Expand Up @@ -134,7 +134,7 @@ function pest(): Configuration
* is the test description; the second argument is
* a closure that contains the test expectations.
*
* @param-closure-this TestCase $closure
* @param-closure-this TestCall $closure
*
* @return Expectable|TestCall|TestCase|mixed
*/
Expand All @@ -156,7 +156,7 @@ function test(?string $description = null, ?Closure $closure = null): HigherOrde
* is the test description; the second argument is
* a closure that contains the test expectations.
*
* @param-closure-this TestCase $closure
* @param-closure-this TestCall $closure
*
* @return Expectable|TestCall|TestCase|mixed
*/
Expand Down Expand Up @@ -191,7 +191,7 @@ function todo(string $description): TestCall
/**
* Runs the given closure after each test in the current file.
*
* @param-closure-this TestCase $closure
* @param-closure-this TestCall $closure
*
* @return Expectable|HigherOrderTapProxy<Expectable|TestCall|TestCase>|TestCall|mixed
*/
Expand Down