phpmyadmin/libraries/classes/ColumnFull.php
Kamil Tekiela 3b611f3945 Implement ColumnFull DTO
This is MVP. In following commits the DTO will be expanded and improved.

Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-05-19 16:29:34 +01:00

22 lines
500 B
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin;
final class ColumnFull
{
public function __construct(
public readonly string $field,
public readonly string $type,
public readonly string|null $collation,
public readonly bool $isNull,
public readonly string $key,
public readonly string|null $default,
public readonly string $extra,
public readonly string $privileges,
public readonly string $comment,
) {
}
}