mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
feat(presets): reworks code
This commit is contained in:
@ -355,11 +355,11 @@ final class TestCall
|
||||
/**
|
||||
* Sets the test as "todo".
|
||||
*/
|
||||
public function todo(
|
||||
array|string $note = null,
|
||||
array|string $issue = null,
|
||||
array|string $assignee = null,
|
||||
array|string $pr = null,
|
||||
public function todo(// @phpstan-ignore-line
|
||||
array|string|null $note = null,
|
||||
array|string|null $assignee = null,
|
||||
array|string|null $issue = null,
|
||||
array|string|null $pr = null,
|
||||
): self {
|
||||
$this->skip('__TODO__');
|
||||
|
||||
@ -412,6 +412,8 @@ final class TestCall
|
||||
|
||||
/**
|
||||
* Sets the test assignee(s).
|
||||
*
|
||||
* @param array<int, string>|string $assignee
|
||||
*/
|
||||
public function assignee(array|string $assignee): self
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user