Respect\Validation\Rules\Bank::__construct PHP Method

__construct() public method

The country code is not case sensitive.
public __construct ( string $countryCode, Factory $factory = null )
$countryCode string The ISO 639-1 country code
$factory Respect\Validation\Rules\Locale\Factory
    public function __construct($countryCode, Factory $factory = null)
    {
        if (null === $factory) {
            $factory = new Factory();
        }
        $this->validatable = $factory->bank($countryCode);
    }