Changes Dbal\DatabaseName, Dbal\TableName and Triggers\TriggerName to implements the new Identifier\Identifier interface. Moves Dbal\DatabaseName, Dbal\TableName and Triggers\TriggerName to the Identifiers namespace. Renames the tryFromValue() and fromValue() methods to just tryFrom() and from() respectively. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
15 lines
240 B
PHP
15 lines
240 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tracking;
|
|
|
|
use PhpMyAdmin\Identifiers\TableName;
|
|
|
|
final class TrackedTable
|
|
{
|
|
public function __construct(public readonly TableName $name, public readonly bool $active)
|
|
{
|
|
}
|
|
}
|