profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

CardScheme Constraint

Syntax

// ...

class Transaction
{
    /**
     * @Assert\CardScheme(
     *     schemes={"AMEX", "MASTERCARD", "UATP", "VISA"},
     *     message="Your credit card number is invalid."
     * )
     */
    protected $cardNumber;
}

Related

Footnotes