for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Muffin\Queries\Snippets\Builders;
use Muffin\Condition;
use Muffin\Escaper;
trait Where
{
protected
$where;
public function where(Condition $condition)
__construct
$this->where->where($condition);
return $this;
}
private function buildWhere(Escaper $escaper)
$this->where->setEscaper($escaper);
return $this->where->toString();