You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$qb = new \Phalcon\Mvc\Model\Query\Builder;
$qb->limit(5);
$qb->limit(null); // expected result is no limitvar_dump($qb->getLimit()); // returns 'int(0)'
I belive it's because of casting limit in method to int.
The text was updated successfully, but these errors were encountered:
ifsnow
added a commit
to ifsnow/cphalcon
that referenced
this issue
Jan 12, 2016
There is no way to unset limit.
For example:
I belive it's because of casting limit in method to int.
The text was updated successfully, but these errors were encountered: