phpmyadmin/libraries/classes/Display/ForeignKeyRelatedTable.php
Kamil Tekiela dfcceb1465 ForeignKeyRelatedTable
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-05-13 15:45:10 +01:00

17 lines
316 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Display;
final class ForeignKeyRelatedTable
{
public function __construct(
public readonly string $table,
public readonly string $field,
public readonly string $displayField,
public readonly string $database,
) {
}
}