mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
feat: toHaveAllMethodsDocumented and toHaveAllPropertiesDocumented
This commit is contained in:
@ -46,15 +46,27 @@ use function usleep;
|
||||
*/
|
||||
final class WrapperRunner implements RunnerInterface
|
||||
{
|
||||
/**
|
||||
* The time to sleep between cycles.
|
||||
*/
|
||||
private const CYCLE_SLEEP = 10000;
|
||||
|
||||
/**
|
||||
* The result printer.
|
||||
*/
|
||||
private readonly ResultPrinter $printer;
|
||||
|
||||
/**
|
||||
* The timer.
|
||||
*/
|
||||
private readonly Timer $timer;
|
||||
|
||||
/** @var list<non-empty-string> */
|
||||
private array $pending = [];
|
||||
|
||||
/**
|
||||
* The exit code.
|
||||
*/
|
||||
private int $exitcode = -1;
|
||||
|
||||
/** @var array<positive-int,WrapperWorker> */
|
||||
@ -84,6 +96,9 @@ final class WrapperRunner implements RunnerInterface
|
||||
/** @var non-empty-string[] */
|
||||
private readonly array $parameters;
|
||||
|
||||
/**
|
||||
* The code coverage filter registry.
|
||||
*/
|
||||
private CodeCoverageFilterRegistry $codeCoverageFilterRegistry;
|
||||
|
||||
public function __construct(
|
||||
|
||||
Reference in New Issue
Block a user