diff options
-rw-r--r-- | lib/private/legacy/db.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/legacy/db.php b/lib/private/legacy/db.php index da21729f123..6e487e25ad5 100644 --- a/lib/private/legacy/db.php +++ b/lib/private/legacy/db.php @@ -105,11 +105,11 @@ class OC_DB { * @param mixed $stmt OC_DB_StatementWrapper, * an array with 'sql' and optionally 'limit' and 'offset' keys * .. or a simple sql query string - * @param array|null $parameters + * @param array $parameters * @return OC_DB_StatementWrapper * @throws \OC\DatabaseException */ - static public function executeAudited( $stmt, array $parameters = null) { + static public function executeAudited( $stmt, array $parameters = []) { if (is_string($stmt)) { // convert to an array with 'sql' if (stripos($stmt, 'LIMIT') !== false) { //OFFSET requires LIMIT, so we only need to check for LIMIT |