for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ArekX\PQL\Orm\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class Table
{
public function __construct(
public ?string $name = null
)
}