%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/pda/pheanstalk/src/Command/ |
Current File : /home/graphicd/public_html/vebto/vendor/pda/pheanstalk/src/Command/StatsTubeCommand.php |
<?php namespace Pheanstalk\Command; use Pheanstalk\YamlResponseParser; /** * The 'stats-tube' command. * Gives statistical information about the specified tube if it exists. */ class StatsTubeCommand extends TubeCommand { public function getCommandLine(): string { return sprintf('stats-tube %s', $this->tube); } public function getResponseParser(): \Pheanstalk\Contract\ResponseParserInterface { return new YamlResponseParser( YamlResponseParser::MODE_DICT ); } }