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