HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //usr/local/CyberCP/public/phpmyadmin/libraries/classes/ConfigStorage/Features/DisplayFeature.php
<?php

declare(strict_types=1);

namespace PhpMyAdmin\ConfigStorage\Features;

use PhpMyAdmin\Dbal\DatabaseName;
use PhpMyAdmin\Dbal\TableName;

/**
 * @psalm-immutable
 */
final class DisplayFeature
{
    /** @var DatabaseName */
    public $database;

    /** @var TableName */
    public $relation;

    /** @var TableName */
    public $tableInfo;

    public function __construct(DatabaseName $database, TableName $relation, TableName $tableInfo)
    {
        $this->database = $database;
        $this->relation = $relation;
        $this->tableInfo = $tableInfo;
    }
}