verbosity bugfix

This commit is contained in:
tracer 2023-09-14 16:50:37 +02:00
parent 79942030fa
commit 01409e9592
3 changed files with 1 additions and 18 deletions

0
public/matrix.php Normal file
View File

View File

@ -266,7 +266,7 @@ class CLIController
function runCheckSetup(): void
{
if (!$this->domainController->checkPermissions(disableVerbose: true)) {
if (!$this->domainController->checkPermissions(disableVerbose: false)) {
echo 'You need to setup the bindAPI first.' . PHP_EOL;
exit(1);
}

View File

@ -1,17 +0,0 @@
<?php
namespace App\Controller;
use PHPUnit\Framework\TestCase;
/**
*
*/
class DatabaseConnectionTest extends TestCase
{
public function testGetConnection()
{
}
}