Skip to content

v0.3.5

Compare
Choose a tag to compare
@co0lc0der co0lc0der released this 21 Mar 09:24
· 43 commits to main since this release

Refactored and added 2 methods with 2 WHERE conditions.

  • isNull($field) now you can use the method for IS NULL condition
  • isNotNull($field) now you can use the method for IS NOT NULL condition
  • added notNull($field) method as a synonym of isNotNull($field)
  • you can use those conditions with where() and having() also, usage where([['phone', "IS NULL"]]) and where([['phone', "IS NOT NULL"]])
  • change ? to the corresponding values in getSql() method