Omnipay\Common\CreditCardTest::testCustomSupportedBrand PHP 메소드

testCustomSupportedBrand() 공개 메소드

    public function testCustomSupportedBrand()
    {
        $this->card->addSupportedBrand('omniexpress', '/^9\\d{12}(\\d{3})?$/');
        $this->assertArrayHasKey('omniexpress', $this->card->getSupportedBrands());
    }
CreditCardTest