meraproject/vendor/yoomoney/yookassa-sdk-php/tests/Request/Payments/Payment/CreateCaptureResponseTest.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

15 lines
371 B
PHP

<?php
namespace Tests\YooKassa\Request\Payments\Payment;
use Tests\YooKassa\Request\Payments\AbstractPaymentResponseTest;
use YooKassa\Request\Payments\Payment\CreateCaptureResponse;
class CreateCaptureResponseTest extends AbstractPaymentResponseTest
{
protected function getTestInstance($options)
{
return new CreateCaptureResponse($options);
}
}