Commit ad4cc117 authored by jeroendedauw's avatar jeroendedauw

Use a strict check against null

parent 74eda4b0
...@@ -1137,7 +1137,7 @@ class QueryBuilder ...@@ -1137,7 +1137,7 @@ class QueryBuilder
private function isLimitQuery() private function isLimitQuery()
{ {
return $this->maxResults !== null || $this->firstResult != null; return $this->maxResults !== null || $this->firstResult !== null;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment