pachico/magoo

View on GitHub
src/Validator/ValidatorInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Pachico\Magoo\Validator;

/**
 * Validators must implement this interface
 */
interface ValidatorInterface
{
    /**
     * @param string|int $input
     *
     * @return bool If sequence is valid Luhn
     */
    public function isValid($input);
}