equals() public method

Specify an equality match for the current field.
See also: Builder::equals()
public equals ( mixed $value )
$value mixed
Esempio n. 1
0
 /**
  * Specify an equality match for the current field.
  *
  * @see Expr::equals()
  * @param mixed $value
  * @return self
  */
 public function equals($value)
 {
     $this->expr->equals($value);
     return $this;
 }
Esempio n. 2
0
 /**
  * Specify an equality match for the current field.
  *
  * @see Expr::equals()
  * @param mixed $value
  * @return $this
  */
 public function equals($value)
 {
     $this->query->equals($value);
     return $this;
 }