Skip to content

Commit 47303b0

Browse files
Merge pull request #881 from nextcloud/automated/noid/main-update-nextcloud-ocp
[main] Update nextcloud/ocp dependency
2 parents 86f0779 + c5abe69 commit 47303b0

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

composer.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Unit/StorageWrapperTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88

99
namespace OCA\FilesAccessControl\Tests\Unit;
1010

11+
use OC\Files\Storage\Storage;
1112
use OCA\FilesAccessControl\Operation;
1213
use OCA\FilesAccessControl\StorageWrapper;
1314
use OCP\Files\ForbiddenException;
1415
use OCP\Files\Mount\IMountPoint;
15-
use OCP\Files\Storage\IStorage;
1616
use PHPUnit\Framework\MockObject\MockObject;
1717
use Test\TestCase;
1818

1919
class StorageWrapperTest extends TestCase {
20-
protected IStorage&MockObject $storage;
20+
protected Storage&MockObject $storage;
2121
protected Operation&MockObject $operation;
2222

2323
/** @var IMountPoint|MockObject */
@@ -26,7 +26,7 @@ class StorageWrapperTest extends TestCase {
2626
protected function setUp(): void {
2727
parent::setUp();
2828

29-
$this->storage = $this->createMock(IStorage::class);
29+
$this->storage = $this->createMock(Storage::class);
3030
$this->operation = $this->createMock(Operation::class);
3131

3232
$this->mountPoint = $this->createMock(IMountPoint::class);

0 commit comments

Comments
 (0)