%PDF- %PDF-
Direktori : /home/graphicd/www/vebto/vendor/pda/pheanstalk/src/Command/ |
Current File : /home/graphicd/www/vebto/vendor/pda/pheanstalk/src/Command/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 ); } }