27 lines
679 B
PHP
27 lines
679 B
PHP
<?php
|
|
class Response {
|
|
|
|
public static function respondError($errorMsg, $data = null) {
|
|
$response = array(
|
|
'status' => 'fail',
|
|
'message' => $errorMsg,
|
|
'data' => $data
|
|
);
|
|
|
|
$app = \Slim\Slim::getInstance();
|
|
$app->response()->setBody(json_encode($response));
|
|
$app->response()->finalize();
|
|
}
|
|
|
|
public static function respondSuccess($data = null) {
|
|
$response = array(
|
|
'status' => 'success',
|
|
'data' => $data
|
|
);
|
|
|
|
$app = \Slim\Slim::getInstance();
|
|
$app->response()->setBody(json_encode($response));
|
|
$app->response()->finalize();
|
|
}
|
|
}
|