for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Muffin\Queries\Snippets\Builders;
trait GroupBy
{
protected
$groupBy;
public function groupBy($column)
__construct
$this->groupBy->addGroupBy($column);
return $this;
}
private function buildGroupBy()
return $this->groupBy->toString();