summaryrefslogtreecommitdiff
path: root/includes/database/pgsql/query.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-12-08 21:41:54 +0000
committerDries Buytaert <dries@buytaert.net>2008-12-08 21:41:54 +0000
commit55382d04a7438210bef7252dec960b3e8a00c263 (patch)
tree08e578ca6d4068a61c1bb44a193418e50a9c0ddf /includes/database/pgsql/query.inc
parent372846e1dcac8f28ce0ace61c0e7da3993f23cef (diff)
downloadbrdo-55382d04a7438210bef7252dec960b3e8a00c263.tar.gz
brdo-55382d04a7438210bef7252dec960b3e8a00c263.tar.bz2
- Patch #318016 by Dave Reid: step one to standardizing type-hinting.
Diffstat (limited to 'includes/database/pgsql/query.inc')
-rw-r--r--includes/database/pgsql/query.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/pgsql/query.inc b/includes/database/pgsql/query.inc
index a489cbeae..02cddda1e 100644
--- a/includes/database/pgsql/query.inc
+++ b/includes/database/pgsql/query.inc
@@ -9,7 +9,7 @@
class InsertQuery_pgsql extends InsertQuery {
- public function __construct($connection, $table, Array $options = array()) {
+ public function __construct($connection, $table, array $options = array()) {
parent::__construct($connection, $table, $options);
$this->queryOptions['return'] = Database::RETURN_NULL;
}