for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helix\DB\Fluent;
/**
* Represents a logical expression that will evaluate as boolean.
*/
class Predicate extends Expression implements ValueInterface {
* `NOT($this)`
*
* @return static
public function not () {
return static::factory($this->db, "NOT({$this})");
}