compatibility to Nc 20
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
ca7a7a5c85
commit
c882bc68ba
|
@ -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);
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue