Обновленная версия SDK

This commit is contained in:
Антон Н. Николаев
2020-12-01 15:39:32 +03:00
commit 3eebc00ef2
365 changed files with 50275 additions and 0 deletions
@@ -0,0 +1,25 @@
<?php
namespace Tests\YooKassa\Model\PaymentData;
use YooKassa\Model\PaymentData\PaymentDataMobileBalance;
use YooKassa\Model\PaymentMethodType;
class PaymentDataMobileBalanceTest extends AbstractPaymentDataPhoneTest
{
/**
* @return PaymentDataMobileBalance
*/
protected function getTestInstance()
{
return new PaymentDataMobileBalance();
}
/**
* @return string
*/
protected function getExpectedType()
{
return PaymentMethodType::MOBILE_BALANCE;
}
}