37970-vm/api/v1/Core/Response.php
Flatlogic Bot 33ad70235b v5
2026-01-30 15:36:51 +00:00

17 lines
362 B
PHP

<?php
namespace Api\Core;
class Response {
public static function json($data, $status = 200) {
header('Content-Type: application/json');
http_response_code($status);
echo json_encode($data);
exit;
}
public static function error($message, $status = 400) {
self::json(['error' => $message], $status);
}
}