for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Enjoys\Forms\Attributes;
use Enjoys\Forms\Attribute;
final class ClassAttribute extends Attribute
{
protected string $name = 'class';
public function __construct()
$this->setMultiple(true);
$this->setWithoutValue(false);
}