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 7b016c9 commit fa08e1eCopy full SHA for fa08e1e
.github/workflows/ci.yaml
@@ -136,7 +136,7 @@ jobs:
136
137
- run: ./vendor/bin/phpunit ${{ matrix.phpunit-flags }}
138
env:
139
- FAST_LINT_TEST_CASES: 0
+ FAST_LINT_TEST_CASES: ${{ matrix.FAST_LINT_TEST_CASES }}
140
141
- if: matrix.calculate-coverage
142
tests/Fixer/AbstractFixerTestCase.php
@@ -225,7 +225,7 @@ final protected function lintSource(string $source): ?string
225
static $linter;
226
227
if ($linter === null) {
228
- $linter = \getenv('FAST_LINT_TEST_CASES') !== false ? new Linter() : new ProcessLinter();
+ $linter = (\getenv('FAST_LINT_TEST_CASES') === '1') ? new Linter() : new ProcessLinter();
229
}
230
231
try {
0 commit comments