fix phpdoc

This commit is contained in:
danilopolani
2022-03-06 19:02:02 +01:00
parent 1079793ccf
commit 1dc33070fe
2 changed files with 1 additions and 5 deletions

View File

@ -38,7 +38,7 @@ final class TestCaseFactory
/** /**
* The list of annotations. * The list of annotations.
* *
* @var array<int, \Pest\Factories\Attributes\Attribute> * @var array<int, class-string>
*/ */
private static array $attributes = [ private static array $attributes = [
Attributes\Covers::class, Attributes\Covers::class,

View File

@ -173,8 +173,6 @@ final class TestCall
/** /**
* Sets the covered classes. * Sets the covered classes.
*
* @param class-string..., $classes
*/ */
public function coversClass(string ...$classes): TestCall public function coversClass(string ...$classes): TestCall
{ {
@ -187,8 +185,6 @@ final class TestCall
/** /**
* Sets the covered functions. * Sets the covered functions.
*
* @param string..., $functions
*/ */
public function coversFunction(string ...$functions): TestCall public function coversFunction(string ...$functions): TestCall
{ {