Skip to content

Commit

Permalink
Fix CI reports
Browse files Browse the repository at this point in the history
  • Loading branch information
Quetzacoalt91 committed Jul 5, 2024
1 parent b1a3c11 commit 2171383
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions classes/Exceptions/UpgradeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public function getQuickInfos(): array
$this->quickInfos
);
}

return $this->quickInfos;
}

Expand Down
5 changes: 4 additions & 1 deletion tests/unit/ErrorHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ protected function setUp()
{
parent::setUp();
$this->logger = new LegacyLogger();
$this->errorHandler = new ErrorHandler($this->logger);
$this->errorHandler = $this->getMockBuilder(ErrorHandler::class)
->setConstructorArgs([$this->logger])
->setMethods(['terminate'])
->getMock();
}

public function testDefaultContentIsEmpty()
Expand Down

0 comments on commit 2171383

Please sign in to comment.