Skip to content

Commit

Permalink
Romev dum debg statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Rainville committed Jan 18, 2023
1 parent de4f9cc commit 8c607a7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/ORM/Queries/SQLSelect.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,6 @@ public function getLimit()
*/
public function setLimit($limit, $offset = 0)
{
global $hello;

if ($hello) {
dump([$limit, $offset]);
}

if ((is_numeric($limit) && $limit < 0) || (is_numeric($offset) && $offset < 0)) {
throw new InvalidArgumentException("SQLSelect::setLimit() only takes positive values");
}
Expand Down

0 comments on commit 8c607a7

Please sign in to comment.