IBAN\Generation\IBANGenerator::prepareAndCheckBankAccountNumber PHP Method

prepareAndCheckBankAccountNumber() protected method

protected prepareAndCheckBankAccountNumber ( $bankAccountNumber )
    protected function prepareAndCheckBankAccountNumber($bankAccountNumber)
    {
        $bankAccountNumber = $this->normalize($bankAccountNumber);
        if (empty($bankAccountNumber)) {
            throw new \InvalidArgumentException('bankAccountNumber is missing');
        }
        return $bankAccountNumber;
    }