File manager - Edit - /var/www/payraty/helpdesk/vendor/pda/pheanstalk/src/Command/ReleaseCommand.php
Back
<?php declare(strict_types=1); namespace Pheanstalk\Command; use Pheanstalk\Contract\JobIdInterface; use Pheanstalk\Exception; use Pheanstalk\Exception\UnsupportedResponseException; use Pheanstalk\Values\JobCommandTemplate; use Pheanstalk\Values\RawResponse; use Pheanstalk\Values\ResponseType; use Pheanstalk\Values\Success; /** * The 'release' command. * * Releases a reserved job back onto the ready queue. * */ final class ReleaseCommand extends JobCommand { public function __construct(JobIdInterface $job, private readonly int $priority, private readonly int $delay) { parent::__construct($job); } public function interpret(RawResponse $response): Success { return match ($response->type) { ResponseType::NotFound => throw new Exception\JobNotFoundException(), ResponseType::Released => new Success(), default => throw new UnsupportedResponseException($response->type) }; } protected function getCommandTemplate(): JobCommandTemplate { return new JobCommandTemplate("release {id} {$this->priority} {$this->delay}"); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings