Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
pda
/
pheanstalk
/
src
/
Command
/
Editing: 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 ); } }
Save
Cancel