Fix broken exception naming

This commit is contained in:
Roeland Jago Douma 2016-05-19 10:05:53 +02:00
parent d666725fa7
commit 893204ef4a
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
1 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ use Doctrine\Common\EventManager;
use OC\DB\QueryBuilder\QueryBuilder; use OC\DB\QueryBuilder\QueryBuilder;
use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection; use OCP\IDBConnection;
use OCP\PreconditionNotMetException; use OCP\PreConditionNotMetException;
class Connection extends \Doctrine\DBAL\Connection implements IDBConnection { 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) * @param array $updatePreconditionValues ensure values match preconditions (column name => value)
* @return int number of new rows * @return int number of new rows
* @throws \Doctrine\DBAL\DBALException * @throws \Doctrine\DBAL\DBALException
* @throws PreconditionNotMetException * @throws PreConditionNotMetException
*/ */
public function setValues($table, array $keys, array $values, array $updatePreconditionValues = []) { public function setValues($table, array $keys, array $values, array $updatePreconditionValues = []) {
try { try {
@ -294,7 +294,7 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection {
$affected = $updateQb->execute(); $affected = $updateQb->execute();
if ($affected === 0 && !empty($updatePreconditionValues)) { if ($affected === 0 && !empty($updatePreconditionValues)) {
throw new PreconditionNotMetException(); throw new PreConditionNotMetException();
} }
return 0; return 0;