diff options
author | Ole Ostergaard <ole.c.ostergaard@gmail.com> | 2019-02-26 14:08:55 +0100 |
---|---|---|
committer | Ole Ostergaard <ole.c.ostergaard@gmail.com> | 2019-03-21 11:42:00 +0100 |
commit | 0d778fcc4e489f541271fa25087777a9253d129e (patch) | |
tree | 158dc4b47060c79394580c3365dd778d55ffed6b /lib/public/IDBConnection.php | |
parent | 63350423d48b1d4fef842666ae3b7627396ca8d1 (diff) | |
download | nextcloud-server-0d778fcc4e489f541271fa25087777a9253d129e.tar.gz nextcloud-server-0d778fcc4e489f541271fa25087777a9253d129e.zip |
Code cleanup.
Signed-off-by: Ole Ostergaard <ole.c.ostergaard@gmail.com>
Diffstat (limited to 'lib/public/IDBConnection.php')
-rw-r--r-- | lib/public/IDBConnection.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/IDBConnection.php b/lib/public/IDBConnection.php index f640ec126f0..4c66896a2fe 100644 --- a/lib/public/IDBConnection.php +++ b/lib/public/IDBConnection.php @@ -128,11 +128,11 @@ interface IDBConnection { * Implementation is not fully finished and should not be used! * * @param string $table The table name (will replace *PREFIX* with the actual prefix) - * @param array $input data that should be inserted into the table (column name => value) + * @param array $values data that should be inserted into the table (column name => value) * @return int number of inserted rows - * @since 17.0.0 + * @since 16.0.0 */ - public function insertIgnoreConflict($table, $input) : int; + public function insertIgnoreConflict(string $table,array $values) : int; /** * Insert or update a row value |