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.
Activity