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.
コード例 #1
0
ファイル: OrX.php プロジェクト: webmozart/expression
 public function orNotEmpty()
 {
     return $this->orX(Expr::notEmpty());
 }
コード例 #2
0
ファイル: AndX.php プロジェクト: webmozart/expression
 public function andNotEmpty()
 {
     return $this->andX(Expr::notEmpty());
 }