Skip to content

Commit b7e6ff8

Browse files
Update HTTPResponse.php
Updated
1 parent 920771a commit b7e6ff8

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

src/HTTPResponse.php

+5-8
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
*
1919
*/
2020

21+
const SUCCESS = "Success";
22+
const ALL_FIELDS_REQUIRED = "All fields are required";
23+
const SOMETHING_WRONG = "Something went wrong !";
24+
const SOMETHING_WRONG_LATER = "Something went wrong ! Please try again later.";
25+
2126
class HTTPResponse extends Controller
2227
{
2328

@@ -42,7 +47,6 @@ public function sendSuccess($message, $data = null)
4247
{
4348
$response = [
4449
"status" => self::$HTTP_OK,
45-
"response" => self::$HTTP_OK,
4650
'message' => $message,
4751
];
4852
if ($data != null) {
@@ -66,7 +70,6 @@ public function sendSuccessForce($message, $key, $value)
6670
{
6771
$response = [
6872
"status" => self::$HTTP_OK,
69-
"response" => self::$HTTP_OK,
7073
'message' => $message,
7174
$key => $value,
7275
];
@@ -85,7 +88,6 @@ public function sendFailure($message, $data = null)
8588
{
8689
$response = [
8790
"status" => self::$HTTP_CONFLICT,
88-
"response" => self::$HTTP_CONFLICT,
8991
'message' => $message,
9092
];
9193
if ($data != null) {
@@ -106,7 +108,6 @@ public function validationFailed($message, $errors)
106108
{
107109
$response = [
108110
"status" => self::$HTTP_UNPROCESSABLE_ENTITY,
109-
"response" => self::$HTTP_UNPROCESSABLE_ENTITY,
110111
'message' => $message,
111112
'errors' => $errors,
112113
];
@@ -125,7 +126,6 @@ public function notFound($message, $errors = null)
125126
{
126127
$response = [
127128
"status" => self::$HTTP_NOT_FOUND,
128-
"response" => self::$HTTP_NOT_FOUND,
129129
'message' => $message,
130130
'errors' => is_null($errors) ? 'not specified' : $errors,
131131
];
@@ -144,7 +144,6 @@ public function unauthorized($message)
144144
{
145145
$response = [
146146
"status" => self::$HTTP_UNAUTHORIZED,
147-
"response" => self::$HTTP_UNAUTHORIZED,
148147
'message' => $message,
149148
'errors' => [$message]
150149
];
@@ -162,7 +161,6 @@ public function forbidden($message)
162161
{
163162
$response = [
164163
"status" => self::$HTTP_FORBIDDEN,
165-
"response" => self::$HTTP_FORBIDDEN,
166164
'message' => $message,
167165
];
168166
return Response::json($response, self::$HTTP_FORBIDDEN);
@@ -179,7 +177,6 @@ public function dataProcessFailed($message)
179177
{
180178
$response = [
181179
"status" => self::$HTTP_BAD_REQUEST,
182-
"response" => self::$HTTP_BAD_REQUEST,
183180
'message' => $message,
184181
'errors' => [$message]
185182
];

0 commit comments

Comments
 (0)