<?phpdeclare(strict_types=1);namespace App\Action;use Symfony\Component\HttpFoundation\JsonResponse;/** * Get status action for healthy check * * @author Michel Chowanski <michel.chowanski@bestit-online.de> * @package App\Action */class GetStatusAction{ /** * Get status * * @return JsonResponse */ public function __invoke(): JsonResponse { return new JsonResponse([ 'status' => 'ok' ]); }}