Skip to content

Commit

Permalink
fix: ACLManager tests
Browse files Browse the repository at this point in the history
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
  • Loading branch information
solracsf authored Jul 6, 2024
1 parent 243e0ec commit 9ac6404
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/ACL/ACLManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ class ACLManagerTest extends TestCase {
private $ruleManager;
/** @var TrashManager */
private $trashManager;
/** @var LoggerInterface */
private $logger,
/** @var IUser */
private $user;
/** @var ACLManager */
Expand All @@ -54,6 +56,7 @@ protected function setUp(): void {
$this->user = $this->createMock(IUser::class);
$this->ruleManager = $this->createMock(RuleManager::class);
$this->trashManager = $this->createMock(TrashManager::class);
$this->logger = $this->createMock(LoggerInterface::class);
$this->aclManager = $this->getAclManager();
$this->dummyMapping = $this->createMapping('dummy');

Expand Down

0 comments on commit 9ac6404

Please sign in to comment.