verbosity bugfix
This commit is contained in:
parent
79942030fa
commit
01409e9592
|
@ -266,7 +266,7 @@ class CLIController
|
||||||
|
|
||||||
function runCheckSetup(): void
|
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;
|
echo 'You need to setup the bindAPI first.' . PHP_EOL;
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controller;
|
|
||||||
|
|
||||||
use PHPUnit\Framework\TestCase;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
class DatabaseConnectionTest extends TestCase
|
|
||||||
{
|
|
||||||
|
|
||||||
public function testGetConnection()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue