mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 12:34:24 +00:00
14 lines
408 B
PHP
14 lines
408 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Transactions;
|
|
|
|
use App\Classes\Modules\Transactions\ControllersLogic\UpdateRefundTransactionStatusLogic;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class UpdateRefundTransactionStatusController
|
|
{
|
|
public function update(Request $request, UpdateRefundTransactionStatusLogic $logic): JsonResponse {
|
|
return $logic->execute($request);
|
|
}
|
|
} |