for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SLLH\IsoCodesValidator\Constraints;
use SLLH\IsoCodesValidator\AbstractIsoCodesGenericConstraint;
/**
* @Annotation
* @Target({"PROPERTY", "METHOD", "ANNOTATION"})
*
* @author Sullivan Senechal <[email protected]>
*/
final class Ean13 extends AbstractIsoCodesGenericConstraint
{
public $message = 'This EAN 13 code is not valid.';
* {@inheritdoc}
public function getIsoCodesVersion()
return '1.0.0';
}