We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9877904 commit a463c95Copy full SHA for a463c95
src/Annotation/Processor/RequiresProcessor.php
@@ -20,7 +20,7 @@
20
final class RequiresProcessor implements Processor
21
{
22
/**
23
- * @see https://phpunit.readthedocs.io/en/9.0/incomplete-and-skipped-tests.html#skipping-tests-using-requires
+ * @see https://github.com/sebastianbergmann/phpunit/blob/7.1.0/src/Util/Test.php#L67-L90
24
*/
25
private const PHPUNIT_REQUIREMENTS = [
26
'PHP' => true,
@@ -29,6 +29,7 @@ final class RequiresProcessor implements Processor
29
'OSFAMILY' => true,
30
'function' => true,
31
'extension' => true,
32
+ 'setting' => true,
33
];
34
35
/** @var array<string, Requirement> */
0 commit comments