[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
phpMyAdmin
/
libraries
/
classes
/
ConfigStorage
/
Features
/
[
Home
]
File: FavoriteTablesFeature.php
<?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; } }