- Quickfix from error found during PHP 8 migration
This commit is contained in:
parent
7194a33bec
commit
da72314c62
|
@ -11,8 +11,8 @@ use Picea;
|
|||
/**
|
||||
* @Language("lean.route")
|
||||
* @RouteParam("methods" => [ 'GET', 'POST', 'DELETE' ], "base" => "/~")
|
||||
* @Security('locked' => true)
|
||||
* @Taxus("admin")
|
||||
* @Security('locked' => false)
|
||||
* #Taxus("admin")
|
||||
*/
|
||||
trait ConsoleControllerTrait
|
||||
{
|
||||
|
|
|
@ -29,10 +29,10 @@
|
|||
|
||||
<div class="grid db-grid">
|
||||
<div class="col db-connection">{{ $connection->name }}</div>
|
||||
<div class="col db-adapter">{{ $conf['adapter'] }}</div>
|
||||
<div class="col db-host">{{ $conf['host'] }}:{{ $conf['port'] }}</div>
|
||||
<div class="col db-name">{{ $conf['database'] }}</div>
|
||||
<div class="col db-username">{{ $conf['username'] }}</div>
|
||||
<div class="col db-adapter">{{ $conf['adapter'] ?? '-' }}</div>
|
||||
<div class="col db-host">{{ $conf['host'] ?? '-' }}:{{ $conf['port'] ?? '-' }}</div>
|
||||
<div class="col db-name">{{ $conf['database'] ?? '-' }}</div>
|
||||
<div class="col db-username">{{ $conf['username'] ?? '-' }}</div>
|
||||
</div>
|
||||
|
||||
<div class="tables">
|
||||
|
|
Loading…
Reference in New Issue