phpmyadmin/src/Column.php
Kamil Tekiela ed59318fbe Refactor getColumn and getColumns
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-09-02 16:24:55 +01:00

19 lines
363 B
PHP

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