Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
repl6669 committed Oct 13, 2023
1 parent 9df5cf1 commit e73a54a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/StripePaymentAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
use Dystcz\LunarApiStripeAdapter\Actions\AuthorizeStripePayment;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Log;
Expand Down Expand Up @@ -98,7 +97,7 @@ public function handleWebhook(Request $request): JsonResponse
Log::info('Received unknown event type '.$event->type);
}

return new JsonResource([
return new JsonResponse([
'message' => 'success',
]);
}
Expand Down

0 comments on commit e73a54a

Please sign in to comment.