18
18
*
19
19
*/
20
20
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
+
21
26
class HTTPResponse extends Controller
22
27
{
23
28
@@ -42,7 +47,6 @@ public function sendSuccess($message, $data = null)
42
47
{
43
48
$ response = [
44
49
"status " => self ::$ HTTP_OK ,
45
- "response " => self ::$ HTTP_OK ,
46
50
'message ' => $ message ,
47
51
];
48
52
if ($ data != null ) {
@@ -66,7 +70,6 @@ public function sendSuccessForce($message, $key, $value)
66
70
{
67
71
$ response = [
68
72
"status " => self ::$ HTTP_OK ,
69
- "response " => self ::$ HTTP_OK ,
70
73
'message ' => $ message ,
71
74
$ key => $ value ,
72
75
];
@@ -85,7 +88,6 @@ public function sendFailure($message, $data = null)
85
88
{
86
89
$ response = [
87
90
"status " => self ::$ HTTP_CONFLICT ,
88
- "response " => self ::$ HTTP_CONFLICT ,
89
91
'message ' => $ message ,
90
92
];
91
93
if ($ data != null ) {
@@ -106,7 +108,6 @@ public function validationFailed($message, $errors)
106
108
{
107
109
$ response = [
108
110
"status " => self ::$ HTTP_UNPROCESSABLE_ENTITY ,
109
- "response " => self ::$ HTTP_UNPROCESSABLE_ENTITY ,
110
111
'message ' => $ message ,
111
112
'errors ' => $ errors ,
112
113
];
@@ -125,7 +126,6 @@ public function notFound($message, $errors = null)
125
126
{
126
127
$ response = [
127
128
"status " => self ::$ HTTP_NOT_FOUND ,
128
- "response " => self ::$ HTTP_NOT_FOUND ,
129
129
'message ' => $ message ,
130
130
'errors ' => is_null ($ errors ) ? 'not specified ' : $ errors ,
131
131
];
@@ -144,7 +144,6 @@ public function unauthorized($message)
144
144
{
145
145
$ response = [
146
146
"status " => self ::$ HTTP_UNAUTHORIZED ,
147
- "response " => self ::$ HTTP_UNAUTHORIZED ,
148
147
'message ' => $ message ,
149
148
'errors ' => [$ message ]
150
149
];
@@ -162,7 +161,6 @@ public function forbidden($message)
162
161
{
163
162
$ response = [
164
163
"status " => self ::$ HTTP_FORBIDDEN ,
165
- "response " => self ::$ HTTP_FORBIDDEN ,
166
164
'message ' => $ message ,
167
165
];
168
166
return Response::json ($ response , self ::$ HTTP_FORBIDDEN );
@@ -179,7 +177,6 @@ public function dataProcessFailed($message)
179
177
{
180
178
$ response = [
181
179
"status " => self ::$ HTTP_BAD_REQUEST ,
182
- "response " => self ::$ HTTP_BAD_REQUEST ,
183
180
'message ' => $ message ,
184
181
'errors ' => [$ message ]
185
182
];
0 commit comments