for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BrenoRoosevelt\Validation\Rules\Brazilian;
use Attribute;
#[Attribute(Attribute::TARGET_PROPERTY)]
class DigitoMod11 extends DigitoVerificador
{
protected function getDigit($number): int
return DigitoVerificador::mod11($number);
}