[2.x] Drop PHP 8.1 #162
ci.yml
on: pull_request
Continuous Integration
/
...
/
Supported Versions Matrix
3s
Continuous Integration
/
...
/
Package Name
9s
Continuous Integration
/
...
/
Check Markdown links
1m 17s
Continuous Integration
/
...
/
Supported Threading Matrix
4s
Continuous Integration
/
...
/
Supported Checks Matrix
30s
Matrix: Continuous Integration / Continuous Integration / can-require
Continuous Integration
/
...
/
Compile the matrix
4s
Matrix: Continuous Integration / Continuous Integration / qa
Matrix: Continuous Integration / Continuous Integration / directly-on-os
Continuous Integration
/
...
/
✔️
0s
Annotations
4 errors and 17 warnings
|
Continuous Integration / Continuous Integration / Run stan on PHP 8.3 (zts) with lowest dependency preference
Process completed with exit code 2.
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference
Process completed with exit code 2.
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with locked dependency preference
Process completed with exit code 2.
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference
Process completed with exit code 2.
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/Limited.php#L109
Escaped Mutant for Mutator "LogicalAnd":
@@ @@
public function kill(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if ($this->pool instanceof LowLevelPoolInterface || $this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->kill();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAndNegation":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if (!($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface)) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if (!$this->pool instanceof LowLevelPoolInterface && !$this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAnd":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if ($this->pool instanceof LowLevelPoolInterface || $this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with lowest dependency preference:
src/Limited.php#L87
Escaped Mutant for Mutator "Increment":
@@ @@
$this->idleRuntimes--;
return $this->pool->run($callable, $args);
} finally {
- $this->idleRuntimes++;
+ $this->idleRuntimes--;
$this->progressQueue();
}
}
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with locked dependency preference:
src/Limited.php#L109
Escaped Mutant for Mutator "LogicalAnd":
@@ @@
public function kill(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if ($this->pool instanceof LowLevelPoolInterface || $this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->kill();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with locked dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAndNegation":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if (!($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface)) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with locked dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if (!$this->pool instanceof LowLevelPoolInterface && !$this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with locked dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAnd":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if ($this->pool instanceof LowLevelPoolInterface || $this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with locked dependency preference:
src/Limited.php#L87
Escaped Mutant for Mutator "Increment":
@@ @@
$this->idleRuntimes--;
return $this->pool->run($callable, $args);
} finally {
- $this->idleRuntimes++;
+ $this->idleRuntimes--;
$this->progressQueue();
}
}
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with locked dependency preference:
src/Limited.php#L79
Escaped Mutant for Mutator "FunctionCallRemoval":
@@ @@
if ($this->idleRuntimes === 0) {
$deferred = new Deferred();
$this->queue->enqueue(static fn() => $deferred->resolve(null));
- await($deferred->promise());
+
}
try {
$this->idleRuntimes--;
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/Limited.php#L109
Escaped Mutant for Mutator "LogicalAnd":
@@ @@
public function kill(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if ($this->pool instanceof LowLevelPoolInterface || $this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->kill();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAndNegation":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if (!($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface)) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if (!$this->pool instanceof LowLevelPoolInterface && !$this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/Limited.php#L96
Escaped Mutant for Mutator "LogicalAnd":
@@ @@
public function close(): bool
{
$this->closed = true;
- if ($this->pool instanceof LowLevelPoolInterface && $this->group instanceof GroupInterface) {
+ if ($this->pool instanceof LowLevelPoolInterface || $this->group instanceof GroupInterface) {
$this->pool->releaseGroup($this->group);
}
$this->pool->close();
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/Limited.php#L87
Escaped Mutant for Mutator "Increment":
@@ @@
$this->idleRuntimes--;
return $this->pool->run($callable, $args);
} finally {
- $this->idleRuntimes++;
+ $this->idleRuntimes--;
$this->progressQueue();
}
}
|
|
Continuous Integration / Continuous Integration / Run mutation-testing on PHP 8.3 (zts) with highest dependency preference:
src/Limited.php#L79
Escaped Mutant for Mutator "FunctionCallRemoval":
@@ @@
if ($this->idleRuntimes === 0) {
$deferred = new Deferred();
$this->queue->enqueue(static fn() => $deferred->resolve(null));
- await($deferred->promise());
+
}
try {
$this->idleRuntimes--;
|