for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace DH\Auditor\Provider\Doctrine\Auditing\Annotation;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
final class Auditable
{
public bool $enabled = true;
public function __construct(bool $enabled = true)
$this->enabled = $enabled;
}