File manager - Edit - /var/www/payraty/helpdesk/vendor/pda/pheanstalk/src/Command/StatsTubeCommand.php
Back
<?php declare(strict_types=1); namespace Pheanstalk\Command; use Pheanstalk\Exception\MalformedResponseException; use Pheanstalk\Exception\TubeNotFoundException; use Pheanstalk\Exception\UnsupportedResponseException; use Pheanstalk\Parser\YamlDictionaryParser; use Pheanstalk\Values\RawResponse; use Pheanstalk\Values\ResponseType; use Pheanstalk\Values\TubeCommandTemplate; use Pheanstalk\Values\TubeStats; /** * The 'stats-tube' command. * Gives statistical information about the specified tube if it exists. */ final class StatsTubeCommand extends TubeCommand { public function interpret(RawResponse $response): TubeStats { if ($response->type === ResponseType::Ok && isset($response->data)) { return TubeStats::fromBeanstalkArray((new YamlDictionaryParser())->parse($response->data)); } throw match ($response->type) { ResponseType::NotFound => new TubeNotFoundException(), ResponseType::Ok => MalformedResponseException::expectedData(), default => new UnsupportedResponseException($response->type) }; } protected function getCommandTemplate(): TubeCommandTemplate { return new TubeCommandTemplate("stats-tube {tube}"); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.14 |
proxy
|
phpinfo
|
Settings