Skip to content

Commit a463c95

Browse files
committed
Add "setting" to the PHPUnit list of requirements
See sebastianbergmann/phpunit#2967
1 parent 9877904 commit a463c95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Annotation/Processor/RequiresProcessor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
final class RequiresProcessor implements Processor
2121
{
2222
/**
23-
* @see https://phpunit.readthedocs.io/en/9.0/incomplete-and-skipped-tests.html#skipping-tests-using-requires
23+
* @see https://github.com/sebastianbergmann/phpunit/blob/7.1.0/src/Util/Test.php#L67-L90
2424
*/
2525
private const PHPUNIT_REQUIREMENTS = [
2626
'PHP' => true,
@@ -29,6 +29,7 @@ final class RequiresProcessor implements Processor
2929
'OSFAMILY' => true,
3030
'function' => true,
3131
'extension' => true,
32+
'setting' => true,
3233
];
3334

3435
/** @var array<string, Requirement> */

0 commit comments

Comments
 (0)