for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Level23\Druid\Aggregations;
class MaxAggregator extends MethodAggregator
{
/**
* Returns the method for the type aggregation
*
* @return string
*/
protected function getMethod(): string
return 'max';
}