Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/IDBConnection.php')
-rw-r--r--lib/public/IDBConnection.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/IDBConnection.php b/lib/public/IDBConnection.php
index 5be4935906d..30010bb4cef 100644
--- a/lib/public/IDBConnection.php
+++ b/lib/public/IDBConnection.php
@@ -81,7 +81,7 @@ interface IDBConnection {
* @return \Doctrine\DBAL\Driver\Statement The executed statement.
* @since 8.0.0
*/
- public function executeQuery($query, array $params = array(), $types = array());
+ public function executeQuery($query, array $params = [], $types = []);
/**
* Executes an SQL INSERT/UPDATE/DELETE query with the given parameters
@@ -95,7 +95,7 @@ interface IDBConnection {
* @return integer The number of affected rows.
* @since 8.0.0
*/
- public function executeUpdate($query, array $params = array(), array $types = array());
+ public function executeUpdate($query, array $params = [], array $types = []);
/**
* Used to get the id of the just inserted element