]> git.mxchange.org Git - friendica.git/commitdiff
Fix missing return statement
authorArt4 <art4@wlabs.de>
Fri, 6 Jun 2025 14:31:05 +0000 (14:31 +0000)
committerArt4 <art4@wlabs.de>
Fri, 6 Jun 2025 14:31:05 +0000 (14:31 +0000)
src/Console/Worker.php

index 97b7160d039575716151ad1e1dd9c3d55e96e537..09ff5f65998d21b80bde5a42d3f922841d64c8f6 100644 (file)
@@ -92,5 +92,7 @@ HELP;
                CoreWorker::unclaimProcess($process);
 
                $this->processRepo->delete($process);
+
+               return;
        }
 }