compatibility to Nc 20

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2021-02-17 15:57:37 +01:00
parent ca7a7a5c85
commit c882bc68ba
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ declare(strict_types=1);
namespace OC\Repair;
use OCP\DB\Exception;
use Doctrine\DBAL\DBALException;
use OCP\IConfig;
use OCP\IDBConnection;
use OCP\IGroupManager;
@ -112,7 +112,7 @@ class RepairDavShares implements IRepairStep {
->setParameter('shareId', $share['id'])
->execute();
$this->logger->info('Repaired principal for dav share {id} from {old} to {new}', $logParameters);
} catch (Exception $e) {
} catch (DBALException $e) {
$logParameters['message'] = $e->getMessage();
$logParameters['exception'] = $e;
$this->logger->info('Could not repair principal for dav share {id} from {old} to {new}: {message}', $logParameters);

View File

@ -25,8 +25,8 @@ declare(strict_types=1);
namespace Test\Repair;
use Doctrine\DBAL\Driver\Statement;
use OC\Repair\RepairDavShares;
use OCP\DB\IResult;
use OCP\DB\QueryBuilder\IExpressionBuilder;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IConfig;
@ -130,7 +130,7 @@ class RepairDavSharesTest extends TestCase {
],
];
$shareResults = $this->createMock(IResult::class);
$shareResults = $this->createMock(Statement::class);
$shareResults->expects($this->any())
->method('fetch')
->willReturnCallback(function () use (&$shareResultData) {