diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-05-20 14:32:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 14:32:33 +0200 |
commit | bc82fa48d16de0661538410a43de2b6d8c2411cf (patch) | |
tree | 796b59d21da833ebbf10c35a34624937109d12be /lib/public | |
parent | af4a90924d513fb65d0723dad322d7af3e78ae61 (diff) | |
parent | 00b9e576b4ff4d15ec816849c58a4cf8d9c7520c (diff) | |
download | nextcloud-server-bc82fa48d16de0661538410a43de2b6d8c2411cf.tar.gz nextcloud-server-bc82fa48d16de0661538410a43de2b6d8c2411cf.zip |
Merge pull request #32406 from nextcloud/debt/noid/psalm-warning-idbconnection
[Psalm] Fix spelling for PreConditionNotMetException
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/IDBConnection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/IDBConnection.php b/lib/public/IDBConnection.php index d12baa400c0..69ede2c8438 100644 --- a/lib/public/IDBConnection.php +++ b/lib/public/IDBConnection.php @@ -199,7 +199,7 @@ interface IDBConnection { * @param array $updatePreconditionValues ensure values match preconditions (column name => value) * @return int number of new rows * @throws Exception used to be the removed dbal exception, since 21.0.0 it's \OCP\DB\Exception - * @throws PreconditionNotMetException + * @throws PreConditionNotMetException * @since 9.0.0 */ public function setValues($table, array $keys, array $values, array $updatePreconditionValues = []): int; |