We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c44311b commit a0418f7Copy full SHA for a0418f7
tests/bootstrap.php
@@ -14,19 +14,22 @@
14
15
declare(strict_types=1);
16
17
+use PHP_CodeSniffer\Config;
18
+use PHP_CodeSniffer\Util\Standards;
19
+
20
$myStandardName = 'MO4';
21
22
require_once __DIR__.'/../vendor/squizlabs/php_codesniffer/tests/bootstrap.php';
23
24
// Add this Standard.
-PHP_CodeSniffer\Config::setConfigData(
25
+Config::setConfigData(
26
'installed_paths',
27
__DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$myStandardName,
28
true
29
);
30
31
// Ignore all other Standards in tests.
-$standards = PHP_CodeSniffer\Util\Standards::getInstalledStandards();
32
+$standards = Standards::getInstalledStandards();
33
$standards[] = 'Generic';
34
35
$ignoredStandardsStr = implode(
0 commit comments