notEmpty() 공개 정적인 메소드

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