for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pheanstalk\Command;
/**
* The 'stats' command.
*
* Statistical information about the system as a whole.
* @author Valentin Corre
* @package Pheanstalk
* @license http://www.opensource.org/licenses/mit-license.php
*/
class StatsCommand extends AbstractCommand
{
* @inheritDoc
public function getGroup(): string
return 'statistics';
}
public function getAction(): string
return 'query';
public function getFilters(): array
return [
'type' => 'global'
];