name: LuhnValidator class_comment: '# * Validates a PAN using the LUHN Algorithm. # * # * For a list of example card numbers that are used to test this # * class, please see the LuhnValidatorTest class. # * # * @see http://en.wikipedia.org/wiki/Luhn_algorithm # * # * @author Tim Nagel # * @author Greg Knapp http://gregk.me/2011/php-implementation-of-bank-card-luhn-algorithm/ # * @author Bernhard Schussek ' dependencies: - name: Constraint type: class source: Symfony\Component\Validator\Constraint - name: ConstraintValidator type: class source: Symfony\Component\Validator\ConstraintValidator - name: UnexpectedTypeException type: class source: Symfony\Component\Validator\Exception\UnexpectedTypeException - name: UnexpectedValueException type: class source: Symfony\Component\Validator\Exception\UnexpectedValueException properties: [] methods: - name: validate visibility: public parameters: - name: value - name: constraint comment: null traits: - Symfony\Component\Validator\Constraint - Symfony\Component\Validator\ConstraintValidator - Symfony\Component\Validator\Exception\UnexpectedTypeException - Symfony\Component\Validator\Exception\UnexpectedValueException interfaces: []