12 lines
246 B
PHP
12 lines
246 B
PHP
<?php
|
|
namespace Api\Core;
|
|
|
|
class Response {
|
|
public function json($data, $status = 200) {
|
|
http_response_code($status);
|
|
header('Content-Type: application/json');
|
|
echo json_encode($data);
|
|
exit;
|
|
}
|
|
}
|