Browse Source

Fix broken exception naming

tags/v9.1.0beta1
Roeland Jago Douma 8 years ago
parent
commit
893204ef4a
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      lib/private/DB/Connection.php

+ 3
- 3
lib/private/DB/Connection.php View File

@@ -33,7 +33,7 @@ use Doctrine\Common\EventManager;
use OC\DB\QueryBuilder\QueryBuilder;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;
use OCP\PreconditionNotMetException;
use OCP\PreConditionNotMetException;

class Connection extends \Doctrine\DBAL\Connection implements IDBConnection {
/**
@@ -262,7 +262,7 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection {
* @param array $updatePreconditionValues ensure values match preconditions (column name => value)
* @return int number of new rows
* @throws \Doctrine\DBAL\DBALException
* @throws PreconditionNotMetException
* @throws PreConditionNotMetException
*/
public function setValues($table, array $keys, array $values, array $updatePreconditionValues = []) {
try {
@@ -294,7 +294,7 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection {
$affected = $updateQb->execute();

if ($affected === 0 && !empty($updatePreconditionValues)) {
throw new PreconditionNotMetException();
throw new PreConditionNotMetException();
}

return 0;

Loading…
Cancel
Save