IBAN\Core\IBAN::isFormatValid PHP Method

isFormatValid() private method

private isFormatValid ( )
    private function isFormatValid()
    {
        $localeCode = $this->getLocaleCode();
        $accountIdentification = $this->getAccountIdentification();
        return !(preg_match('/' . Constants::$ibanFormatMap[$localeCode] . '/', $accountIdentification) !== 1);
    }