Skip to content

Commit

Permalink
Sync database package
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Babker authored and brianteeman committed Jul 14, 2017
1 parent e4b5658 commit c3c39f8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions libraries/vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -1084,12 +1084,12 @@
"source": {
"type": "git",
"url": "https://github.com/joomla-framework/database.git",
"reference": "bcda1f013a83159b2aa083ff2d25f3ec55978dcf"
"reference": "2e760c99d9e6953de2376f0f8b5028bb299e5045"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/joomla-framework/database/zipball/bcda1f013a83159b2aa083ff2d25f3ec55978dcf",
"reference": "bcda1f013a83159b2aa083ff2d25f3ec55978dcf",
"url": "https://api.github.com/repos/joomla-framework/database/zipball/2e760c99d9e6953de2376f0f8b5028bb299e5045",
"reference": "2e760c99d9e6953de2376f0f8b5028bb299e5045",
"shasum": ""
},
"require": {
Expand All @@ -1113,7 +1113,7 @@
"joomla/di": "To use the Database ServiceProviderInterface objects, install joomla/di.",
"joomla/registry": "To use the Database ServiceProviderInterface objects, install joomla/registry."
},
"time": "2017-07-07T10:57:45+00:00",
"time": "2017-07-12T00:53:12+00:00",
"type": "joomla-package",
"extra": {
"branch-alias": {
Expand Down
4 changes: 2 additions & 2 deletions libraries/vendor/joomla/database/src/DatabaseInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public function connected();
/**
* Create a new database using information from $options object.
*
* @param stdClass $options Object used to pass user and database name to database driver. This object must have "db_name" and "db_user" set.
* @param boolean $utf True if the database supports the UTF-8 character set.
* @param \stdClass $options Object used to pass user and database name to database driver. This object must have "db_name" and "db_user" set.
* @param boolean $utf True if the database supports the UTF-8 character set.
*
* @return boolean|resource
*
Expand Down
5 changes: 5 additions & 0 deletions libraries/vendor/joomla/database/src/DatabaseQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,11 @@ public function __toString()

if ($this->sql)
{
if ($this instanceof Query\LimitableInterface)
{
return $this->processLimit($this->sql, $this->limit, $this->offset);
}

return $this->sql;
}

Expand Down

0 comments on commit c3c39f8

Please sign in to comment.