isEmpty() public static method

Check that a value is empty.
public static isEmpty ( ) : IsEmpty
return Webmozart\Expression\Constraint\IsEmpty The created expression.
コード例 #1
0
ファイル: OrX.php プロジェクト: webmozart/expression
 public function orEmpty()
 {
     return $this->orX(Expr::isEmpty());
 }
コード例 #2
0
ファイル: AndX.php プロジェクト: webmozart/expression
 public function andEmpty()
 {
     return $this->andX(Expr::isEmpty());
 }