Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
pda
/
pheanstalk
/
src
/
Command
/
Editing: StatsCommand.php
<?php namespace Pheanstalk\Command; use Pheanstalk\YamlResponseParser; /** * The 'stats' command. * * Statistical information about the system as a whole. */ class StatsCommand extends AbstractCommand { public function getCommandLine(): string { return 'stats'; } public function getResponseParser(): \Pheanstalk\Contract\ResponseParserInterface { return new YamlResponseParser( YamlResponseParser::MODE_DICT ); } }
Save
Cancel