File manager - Edit - /var/www/payraty/helpdesk/vendor/pda/pheanstalk/src/Command/KickJobCommand.php
Back
<?php declare(strict_types=1); namespace Pheanstalk\Command; use Pheanstalk\Exception; use Pheanstalk\Exception\UnsupportedResponseException; use Pheanstalk\Values\JobCommandTemplate; use Pheanstalk\Values\RawResponse; use Pheanstalk\Values\ResponseType; use Pheanstalk\Values\Success; /** * The 'kick-job' command. * * Kicks a specific buried or delayed job into a 'ready' state. * * A variant of kick that operates with a single job. If the given job * exists and is in a buried or delayed state, it will be moved to the * ready queue of the same tube where it currently belongs. * */ final class KickJobCommand extends JobCommand { public function interpret(RawResponse $response): Success { return match ($response->type) { ResponseType::NotFound => throw new Exception\JobNotFoundException(), ResponseType::Kicked => new Success(), default => throw new UnsupportedResponseException($response->type) }; } protected function getCommandTemplate(): JobCommandTemplate { return new JobCommandTemplate("kick-job {id}"); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.1 |
proxy
|
phpinfo
|
Settings