Skip to content

chore(deps): update dependency phpstan/phpstan to v1.10.23 #277

chore(deps): update dependency phpstan/phpstan to v1.10.23

chore(deps): update dependency phpstan/phpstan to v1.10.23 #277

Triggered via push July 4, 2023 20:02
Status Success
Total duration 5m 16s
Artifacts

infection.yaml

on: push
Fit to window
Zoom out
Zoom in

Annotations

13 warnings
Infection
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Infection
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Infection
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Infection: src/Clients/Consumer/WithSignalControl.php#L22
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ { private function setupInternalTerminationSignal(ConsumerConfig $config) : void { - $config->set('internal.termination.signal', SIGIO); + } private function registerSignals(bool &$shouldRun) : void {
Infection: src/Clients/Consumer/WithSignalControl.php#L31
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ $terminationCallback = static function () use(&$shouldRun) : void { $shouldRun = false; }; - pcntl_signal(SIGTERM, $terminationCallback); + pcntl_signal(SIGINT, $terminationCallback); pcntl_signal(SIGHUP, $terminationCallback); pcntl_sigprocmask(SIG_BLOCK, [SIGIO]);
Infection: src/Clients/Consumer/WithSignalControl.php#L32
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ $shouldRun = false; }; pcntl_signal(SIGTERM, $terminationCallback); - pcntl_signal(SIGINT, $terminationCallback); + pcntl_signal(SIGHUP, $terminationCallback); pcntl_sigprocmask(SIG_BLOCK, [SIGIO]); }
Infection: src/Clients/Consumer/WithSignalControl.php#L33
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ }; pcntl_signal(SIGTERM, $terminationCallback); pcntl_signal(SIGINT, $terminationCallback); - pcntl_signal(SIGHUP, $terminationCallback); + pcntl_sigprocmask(SIG_BLOCK, [SIGIO]); } private function degisterSignals() : void
Infection: src/Clients/Consumer/WithSignalControl.php#L34
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ pcntl_signal(SIGTERM, $terminationCallback); pcntl_signal(SIGINT, $terminationCallback); pcntl_signal(SIGHUP, $terminationCallback); - pcntl_sigprocmask(SIG_BLOCK, [SIGIO]); + pcntl_sigprocmask(SIG_BLOCK, []); } private function degisterSignals() : void {
Infection: src/Clients/Consumer/WithSignalControl.php#L34
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ pcntl_signal(SIGTERM, $terminationCallback); pcntl_signal(SIGINT, $terminationCallback); pcntl_signal(SIGHUP, $terminationCallback); - pcntl_sigprocmask(SIG_BLOCK, [SIGIO]); + } private function degisterSignals() : void {
Infection: src/Clients/Consumer/WithSignalControl.php#L39
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ } private function degisterSignals() : void { - pcntl_signal(SIGTERM, SIG_DFL); + pcntl_signal(SIGINT, SIG_DFL); pcntl_signal(SIGHUP, SIG_DFL); pcntl_sigprocmask(SIG_UNBLOCK, [SIGIO]); } }
Infection: src/Clients/Consumer/WithSignalControl.php#L40
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ private function degisterSignals() : void { pcntl_signal(SIGTERM, SIG_DFL); - pcntl_signal(SIGINT, SIG_DFL); + pcntl_signal(SIGHUP, SIG_DFL); pcntl_sigprocmask(SIG_UNBLOCK, [SIGIO]); } }
Infection: src/Clients/Consumer/WithSignalControl.php#L41
Escaped Mutant for Mutator "FunctionCallRemoval": --- Original +++ New @@ @@ { pcntl_signal(SIGTERM, SIG_DFL); pcntl_signal(SIGINT, SIG_DFL); - pcntl_signal(SIGHUP, SIG_DFL); + pcntl_sigprocmask(SIG_UNBLOCK, [SIGIO]); } }
Infection: src/Clients/Consumer/WithSignalControl.php#L42
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ pcntl_signal(SIGTERM, SIG_DFL); pcntl_signal(SIGINT, SIG_DFL); pcntl_signal(SIGHUP, SIG_DFL); - pcntl_sigprocmask(SIG_UNBLOCK, [SIGIO]); + pcntl_sigprocmask(SIG_UNBLOCK, []); } }