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_PROPERTY | Attribute::TARGET_METHOD)]
class Column
{
public function __construct(
public ?string $columnName = null
)
}