%PDF- %PDF-
| Direktori : /home/graphicd/www/vebto/vendor/pda/pheanstalk/src/Command/ |
| Current File : /home/graphicd/www/vebto/vendor/pda/pheanstalk/src/Command/DeleteCommand.php |
<?php
namespace Pheanstalk\Command;
use Pheanstalk\Contract\ResponseInterface;
use Pheanstalk\Contract\ResponseParserInterface;
use Pheanstalk\Exception;
use Pheanstalk\Response\ArrayResponse;
/**
* The 'delete' command.
* Permanently deletes an already-reserved job.
*/
class DeleteCommand extends JobCommand implements ResponseParserInterface
{
public function getCommandLine(): string
{
return 'delete '.$this->jobId;
}
public function parseResponse(string $responseLine, ?string $responseData): ArrayResponse
{
if ($responseLine == ResponseInterface::RESPONSE_NOT_FOUND) {
throw new Exception\JobNotFoundException(sprintf(
'Cannot delete job %u: %s',
$this->jobId,
$responseLine
));
}
return $this->createResponse($responseLine);
}
}