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 f5a0ce6 commit 44f05abCopy full SHA for 44f05ab
src/Domain/Kernel.php
@@ -42,6 +42,13 @@ public static function bootstrap(): void
42
if (! defined('PHP_CODESNIFFER_VERBOSITY')) {
43
define('PHP_CODESNIFFER_VERBOSITY', 0);
44
}
45
+
46
+ /**
47
+ * Require Tokens utils From PHP Codesniffer.
48
+ */
49
+ require_once file_exists(__DIR__ . '/../../vendor/squizlabs/php_codesniffer/src/Util/Tokens.php')
50
+ ? __DIR__ . '/../../vendor/squizlabs/php_codesniffer/src/Util/Tokens.php'
51
+ : __DIR__ . '/../../../../../vendor/squizlabs/php_codesniffer/src/Util/Tokens.php';
52
53
54
/**
0 commit comments