for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace DBD\Entity;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
final class EntityTable
{
public function __construct(
public string $scheme,
public string $name,
public string $annotation
) {}
}