phpmyadmin/src/ConfigStorage/Features/RecentlyUsedTablesFeature.php
Maurício Meneghini Fauth c2955cc2b2
Rename the directory libraries/classes/ to src/
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-08-30 15:59:28 -03:00

17 lines
326 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\ConfigStorage\Features;
use PhpMyAdmin\Identifiers\DatabaseName;
use PhpMyAdmin\Identifiers\TableName;
/** @psalm-immutable */
final class RecentlyUsedTablesFeature
{
public function __construct(public DatabaseName $database, public TableName $recent)
{
}
}