Remove stack of envelope classes from message metadata #1206
Annotations
11 warnings
|
mutation / PHP 8.5-ubuntu-latest
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Command/ListenAllCommand.php#L71
Escaped Mutant for Mutator "LessThanNegotiation":
@@ @@
}
$pauseSeconds = (int) $input->getOption('pause');
- if ($pauseSeconds < 0) {
+ if ($pauseSeconds >= 0) {
$pauseSeconds = 1;
}
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Command/ListenAllCommand.php#L71
Escaped Mutant for Mutator "LessThan":
@@ @@
}
$pauseSeconds = (int) $input->getOption('pause');
- if ($pauseSeconds < 0) {
+ if ($pauseSeconds <= 0) {
$pauseSeconds = 1;
}
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Cli/SoftLimitTrait.php#L18
Escaped Mutant for Mutator "GreaterThanOrEqualTo":
@@ @@
if ($limit !== 0) {
$usage = memory_get_usage(true);
- if ($usage >= $limit) {
+ if ($usage > $limit) {
return true;
}
}
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Cli/SignalLoop.php#L73
Escaped Mutant for Mutator "FunctionCallRemoval":
@@ @@
// Wait for resume signal until the loop is suspended
while ($this->pause && !$this->exit) {
usleep(10000);
- pcntl_signal_dispatch();
+
}
return !$this->exit;
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Cli/SignalLoop.php#L72
Escaped Mutant for Mutator "FunctionCallRemoval":
@@ @@
// Wait for resume signal until the loop is suspended
while ($this->pause && !$this->exit) {
- usleep(10000);
+
pcntl_signal_dispatch();
}
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Cli/SignalLoop.php#L72
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
// Wait for resume signal until the loop is suspended
while ($this->pause && !$this->exit) {
- usleep(10000);
+ usleep(10001);
pcntl_signal_dispatch();
}
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Cli/SignalLoop.php#L72
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
// Wait for resume signal until the loop is suspended
while ($this->pause && !$this->exit) {
- usleep(10000);
+ usleep(9999);
pcntl_signal_dispatch();
}
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Cli/SignalLoop.php#L68
Escaped Mutant for Mutator "FunctionCallRemoval":
@@ @@
protected function dispatchSignals(): bool
{
- pcntl_signal_dispatch();
+
// Wait for resume signal until the loop is suspended
while ($this->pause && !$this->exit) {
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Cli/SignalLoop.php#L39
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
* @param int $memorySoftLimit Soft RAM limit in bytes. The loop won't let you continue to execute the program if
* soft limit is reached. Zero means no limit.
*/
- public function __construct(protected int $memorySoftLimit = 0)
+ public function __construct(protected int $memorySoftLimit = 1)
{
foreach (self::SIGNALS_EXIT as $signal) {
pcntl_signal($signal, fn() => $this->exit = true);
|
|
mutation / PHP 8.5-ubuntu-latest:
src/Cli/SignalLoop.php#L39
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
* @param int $memorySoftLimit Soft RAM limit in bytes. The loop won't let you continue to execute the program if
* soft limit is reached. Zero means no limit.
*/
- public function __construct(protected int $memorySoftLimit = 0)
+ public function __construct(protected int $memorySoftLimit = -1)
{
foreach (self::SIGNALS_EXIT as $signal) {
pcntl_signal($signal, fn() => $this->exit = true);
|