Skip to content

Instantly share code, notes, and snippets.

@MrHDOLEK
Created November 25, 2023 19:37
Show Gist options
  • Save MrHDOLEK/21fb835ffa59cacae6e66e39c6aa3434 to your computer and use it in GitHub Desktop.
Save MrHDOLEK/21fb835ffa59cacae6e66e39c6aa3434 to your computer and use it in GitHub Desktop.
PingController
<?php
declare(strict_types=1);
class PingController extends Controller
{
/**
* Check if the service is responsive.
*/
public function index(): JsonResponse
{
return response()->json("success", Response::HTTP_OK);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment