14 lines
272 B
PHP
14 lines
272 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Tests\YooKassa\Request\Payments;
|
||
|
|
|
||
|
|
use YooKassa\Request\Payments\PaymentResponse;
|
||
|
|
|
||
|
|
class PaymentResponseTest extends AbstractPaymentResponseTest
|
||
|
|
{
|
||
|
|
protected function getTestInstance($options)
|
||
|
|
{
|
||
|
|
return new PaymentResponse($options);
|
||
|
|
}
|
||
|
|
}
|