for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mattbit\Flat\Query\Expression\Leaf;
use Mattbit\Flat\Model\DocumentInterface;
class EqExpression extends Expression
{
public function match(DocumentInterface $document)
return $this->getValue($document) === $this->reference;
}