notEmpty() public static method

Check that a value is not empty.
public static notEmpty ( ) : Webmozart\Expression\Logic\Not
return Webmozart\Expression\Logic\Not The created expression.
Exemplo n.º 1
0
 public function orNotEmpty()
 {
     return $this->orX(Expr::notEmpty());
 }
Exemplo n.º 2
0
 public function andNotEmpty()
 {
     return $this->andX(Expr::notEmpty());
 }