Skip to content

Commit b11c239

Browse files
Merge branch '9.2'
2 parents 7e164fe + c97956e commit b11c239

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.phive/phars.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="php-cs-fixer" version="^3.0" installed="3.9.1" ___location="./tools/php-cs-fixer" copy="true"/>
3+
<phar name="php-cs-fixer" version="^3.0" installed="3.8.0" ___location="./tools/php-cs-fixer" copy="true"/>
44
<phar name="psalm" version="^4.0" installed="4.24.0" ___location="./tools/psalm" copy="true"/>
5-
<phar name="composer" version="^2.0.3" installed="2.3.9" ___location="./tools/composer" copy="true"/>
5+
<phar name="composer" version="^2.0.3" installed="2.3.8" ___location="./tools/composer" copy="true"/>
66
</phive>

src/StaticAnalysis/ParsingFileAnalyser.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -200,21 +200,21 @@ private function findLinesIgnoredByLineBasedAnnotations(string $filename, string
200200
break;
201201
}
202202

203-
$comment = trim($token[1]);
204-
205-
if ($comment === '// @codeCoverageIgnore' ||
206-
$comment === '//@codeCoverageIgnore') {
207-
$ignore = true;
208-
$stop = true;
209-
} elseif ($comment === '// @codeCoverageIgnoreStart' ||
210-
$comment === '//@codeCoverageIgnoreStart') {
211-
$ignore = true;
212-
} elseif ($comment === '// @codeCoverageIgnoreEnd' ||
213-
$comment === '//@codeCoverageIgnoreEnd') {
214-
$stop = true;
215-
}
203+
$comment = trim($token[1]);
204+
205+
if ($comment === '// @codeCoverageIgnore' ||
206+
$comment === '//@codeCoverageIgnore') {
207+
$ignore = true;
208+
$stop = true;
209+
} elseif ($comment === '// @codeCoverageIgnoreStart' ||
210+
$comment === '//@codeCoverageIgnoreStart') {
211+
$ignore = true;
212+
} elseif ($comment === '// @codeCoverageIgnoreEnd' ||
213+
$comment === '//@codeCoverageIgnoreEnd') {
214+
$stop = true;
215+
}
216216

217-
break;
217+
break;
218218
}
219219

220220
if ($ignore) {

tools/composer

-656 Bytes
Binary file not shown.

tools/php-cs-fixer

-57.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)