Since union type are now possible, using union with null makes more clear that it is a union type. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin;
|
|
|
|
class SystemColumn
|
|
{
|
|
public function __construct(
|
|
public readonly string $tableName,
|
|
public readonly string $referringColumn,
|
|
public readonly string|null $realColumn
|
|
) {
|
|
}
|
|
}
|