Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\ConfigStorage\Features;
|
||||
|
||||
use PhpMyAdmin\Dbal\DatabaseName;
|
||||
use PhpMyAdmin\Dbal\TableName;
|
||||
|
||||
/**
|
||||
* @psalm-immutable
|
||||
*/
|
||||
final class NavigationItemsHidingFeature
|
||||
{
|
||||
/** @var DatabaseName */
|
||||
public $database;
|
||||
|
||||
/** @var TableName */
|
||||
public $navigationHiding;
|
||||
|
||||
public function __construct(DatabaseName $database, TableName $navigationHiding)
|
||||
{
|
||||
$this->database = $database;
|
||||
$this->navigationHiding = $navigationHiding;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue