27 lines
475 B
PHP
Executable File
27 lines
475 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\ConfigStorage\Features;
|
|
|
|
use PhpMyAdmin\Dbal\DatabaseName;
|
|
use PhpMyAdmin\Dbal\TableName;
|
|
|
|
/**
|
|
* @psalm-immutable
|
|
*/
|
|
final class FavoriteTablesFeature
|
|
{
|
|
/** @var DatabaseName */
|
|
public $database;
|
|
|
|
/** @var TableName */
|
|
public $favorite;
|
|
|
|
public function __construct(DatabaseName $database, TableName $favorite)
|
|
{
|
|
$this->database = $database;
|
|
$this->favorite = $favorite;
|
|
}
|
|
}
|