Skip to content

Commit

Permalink
update src folder links
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhell committed Apr 5, 2024
1 parent 29ab7d7 commit 847a294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DQLQueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public function buildLimit(ExpressionInterface|int|null $limit, ExpressionInterf
/**
* Limit isn't optional in MySQL.
*
* @link http://stackoverflow.com/a/271650/1106908
* @link http://dev.mysql.com/doc/refman/5.0/en/select.html#idm47619502796240
* @link https://stackoverflow.com/a/271650/1106908
* @link https://dev.mysql.com/doc/refman/5.0/en/select.html#idm47619502796240
*/
$sql = 'LIMIT ' .
($offset instanceof ExpressionInterface ? $this->buildExpression($offset) : (string)$offset) .
Expand Down

0 comments on commit 847a294

Please sign in to comment.