From 4c936b54ed3ddda85945be808e16e401eb604833 Mon Sep 17 00:00:00 2001 From: Oleksii Skorobogatko Date: Tue, 10 Sep 2024 10:07:32 +0300 Subject: [PATCH] #5 fix namespace after merging master --- tests/Unit/Dto/PaymentStatusDtoTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Unit/Dto/PaymentStatusDtoTest.php b/tests/Unit/Dto/PaymentStatusDtoTest.php index 067f340..dd685e5 100644 --- a/tests/Unit/Dto/PaymentStatusDtoTest.php +++ b/tests/Unit/Dto/PaymentStatusDtoTest.php @@ -2,10 +2,10 @@ declare(strict_types=1); -namespace App\Tests\Unit\Dto; +namespace Mirspay\Tests\Unit\Dto; -use App\Dto\PaymentStatusDto; -use App\Payment\Common\Message\ResponseInterface; +use Mirspay\Dto\PaymentStatusDto; +use Mirspay\Payment\Common\Message\ResponseInterface; use PHPUnit\Framework\TestCase; final class PaymentStatusDtoTest extends TestCase