Skip to content

Commit 915655d

Browse files
Merge branch '10.5' into 11.1
2 parents 9b8075a + e1cc389 commit 915655d

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

src/TextUI/Command/Commands/WarmCodeCoverageCacheCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
/**
2222
* @internal This class is not covered by the backward compatibility promise for PHPUnit
23+
*
24+
* @codeCoverageIgnore
2325
*/
2426
final readonly class WarmCodeCoverageCacheCommand implements Command
2527
{

src/TextUI/Configuration/CodeCoverageFilterRegistry.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,19 @@ public static function instance(): self
3434
return self::$instance;
3535
}
3636

37+
/**
38+
* @codeCoverageIgnore
39+
*/
3740
public function get(): Filter
3841
{
3942
assert($this->filter !== null);
4043

4144
return $this->filter;
4245
}
4346

47+
/**
48+
* @codeCoverageIgnore
49+
*/
4450
public function init(Configuration $configuration, bool $force = false): void
4551
{
4652
if (!$configuration->hasCoverageReport() && !$force) {
@@ -60,6 +66,9 @@ public function init(Configuration $configuration, bool $force = false): void
6066
}
6167
}
6268

69+
/**
70+
* @codeCoverageIgnore
71+
*/
6372
public function configured(): bool
6473
{
6574
return $this->configured;

src/TextUI/Configuration/Registry.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,17 @@ public static function saveTo(string $path): bool
4141
return true;
4242
}
4343

44+
// @codeCoverageIgnoreStart
4445
return false;
46+
// @codeCoverageIgnoreEnd
4547
}
4648

4749
/**
4850
* This method is used by the "run test(s) in separate process" templates.
4951
*
5052
* @noinspection PhpUnused
53+
*
54+
* @codeCoverageIgnore
5155
*/
5256
public static function loadFrom(string $path): void
5357
{

0 commit comments

Comments
 (0)