Completed
Push — master ( c35892...51de61 )
by mehdi
02:46
created
src/RespondServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     private function registerMessages()
33 33
     {
34 34
 
35
-        $this->app->bind( 'Anetwork\Respond\Messages', function() {
35
+        $this->app->bind('Anetwork\Respond\Messages', function() {
36 36
 
37 37
             return new Messages();
38 38
 
Please login to merge, or discard this patch.
src/Facades/Respond.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
 class Respond extends Facade {
8 8
 
9 9
 
10
-	/**
11
-	 * Get the registered name of the component.
12
-	 *
13
-	 * @return string
14
-	 */
15
-	protected static function getFacadeAccessor() { return 'Anetwork\Respond\Messages'; }
10
+ /**
11
+  * Get the registered name of the component.
12
+  *
13
+  * @return string
14
+  */
15
+ protected static function getFacadeAccessor() { return 'Anetwork\Respond\Messages'; }
16 16
 
17 17
 }
18 18
\ No newline at end of file
Please login to merge, or discard this patch.
src/Main.php 2 patches
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Setter for $statusCode
49 49
      * @param integer $statusCode
50
-     * @return App\Htpp\Responds\Respond
50
+     * @return Main
51 51
      * @author Shima Payro <[email protected]>
52 52
      * @since May 2, 2016 9:47:04 AM
53 53
      * @uses
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Setter for $statusText
79 79
      * @param String $statusText
80
-     * @return App\HtppApp\Htpp\Responds\Respond
80
+     * @return Main
81 81
      * @author Shima Payro <[email protected]>
82 82
      * @since May 2, 2016 9:48:23 AM
83 83
      * @uses
@@ -108,7 +108,6 @@  discard block
 block discarded – undo
108 108
 
109 109
     /**
110 110
      * Response which conteins just a message
111
-     * @param string $message
112 111
      * @author Shima Payro <[email protected]>
113 112
      * @since May 2, 2016 9:49:21 AM
114 113
      * @return json
@@ -131,7 +130,7 @@  discard block
 block discarded – undo
131 130
      * @author Mehdi Hosseini <[email protected]>
132 131
      * @since August 24, 2016
133 132
      * @param $errorCode integer
134
-     * @return instance
133
+     * @return Main
135 134
      */
136 135
     public function setErrorCode( $errorCode ) {
137 136
 
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      * @uses
54 54
      * @see
55 55
      */
56
-    public function setStatusCode( $statusCode ) {
56
+    public function setStatusCode($statusCode) {
57 57
 
58 58
         $this->statusCode = $statusCode;
59 59
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      * @uses
84 84
      * @see
85 85
      */
86
-    public function setStatusText( $statusText ) {
86
+    public function setStatusText($statusText) {
87 87
 
88 88
         $this->statusText = $statusText;
89 89
 
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
      * @uses
101 101
      * @see
102 102
      */
103
-    public function respond( $data ) {
103
+    public function respond($data) {
104 104
 
105
-        return response()->json( $data, $this->getStatusCode() );
105
+        return response()->json($data, $this->getStatusCode());
106 106
 
107 107
     }
108 108
 
@@ -117,12 +117,12 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function respondWithMessage() {
119 119
 
120
-        return $this->respond( [
120
+        return $this->respond([
121 121
             'status' => 'fail',
122 122
             'code' => $this->getErrorCode(),
123 123
             'message' => $this->getErrorMessage(),
124 124
 
125
-            ] );
125
+            ]);
126 126
 
127 127
     }
128 128
 
@@ -133,9 +133,9 @@  discard block
 block discarded – undo
133 133
      * @param $errorCode integer
134 134
      * @return instance
135 135
      */
136
-    public function setErrorCode( $errorCode ) {
136
+    public function setErrorCode($errorCode) {
137 137
 
138
-      $this->error = config( 'errors.' . $errorCode );
138
+      $this->error = config('errors.'.$errorCode);
139 139
 
140 140
       $this->errorCode = $errorCode;
141 141
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      */
164 164
     public function getErrorMessage() {
165 165
 
166
-      return $this->error['message'];
166
+      return $this->error[ 'message' ];
167 167
 
168 168
     }
169 169
 
@@ -177,13 +177,13 @@  discard block
 block discarded – undo
177 177
      * @uses
178 178
      * @see
179 179
      */
180
-    public function respondWithResult( $data ) {
180
+    public function respondWithResult($data) {
181 181
 
182
-        return $this->respond( [
182
+        return $this->respond([
183 183
             'status' => $this->getStatusText(),
184 184
             'result' => $data
185 185
 
186
-            ] );
186
+            ]);
187 187
 
188 188
     }
189 189
 
Please login to merge, or discard this patch.
src/Messages.php 2 patches
Doc Comments   -8 removed lines patch added patch discarded remove patch
@@ -72,7 +72,6 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Delete action is faild
74 74
      * @author Shima Payro <[email protected]>
75
-     * @param String $message
76 75
      * @since May 2, 2016 9:53:53 AM
77 76
      * @uses
78 77
      * @see
@@ -88,7 +87,6 @@  discard block
 block discarded – undo
88 87
     /**
89 88
      * Update action is succeed
90 89
      * @author Shima Payro <[email protected]>
91
-     * @param String $message
92 90
      * @since May 2, 2016 9:54:09 AM
93 91
      * @uses
94 92
      * @see
@@ -104,7 +102,6 @@  discard block
 block discarded – undo
104 102
     /**
105 103
      * Insert action is faild
106 104
      * @author Shima Payro <[email protected]>
107
-     * @param String $message
108 105
      * @since May 2, 2016 9:54:27 AM
109 106
      * @uses
110 107
      * @see
@@ -120,7 +117,6 @@  discard block
 block discarded – undo
120 117
     /**
121 118
      * Database connection is refused
122 119
      * @author Shima Payro <[email protected]>
123
-     * @param String $message
124 120
      * @since May 2, 2016 9:54:45 AM
125 121
      * @uses
126 122
      * @see
@@ -136,7 +132,6 @@  discard block
 block discarded – undo
136 132
     /**
137 133
      * page requested is not found
138 134
      * @author Shima Payro <[email protected]>
139
-     * @param String $message
140 135
      * @since May 2, 2016 9:55:20 AM
141 136
      * @uses
142 137
      * @see
@@ -152,7 +147,6 @@  discard block
 block discarded – undo
152 147
     /**
153 148
      * Wrong parameters are entered
154 149
      * @author Shima Payro <[email protected]>
155
-     * @param String $message
156 150
      * @since May 2, 2016 9:55:20 AM
157 151
      * @uses
158 152
      * @see
@@ -168,7 +162,6 @@  discard block
 block discarded – undo
168 162
     /**
169 163
      * Method is not allowed
170 164
      * @author Shima Payro <[email protected]>
171
-     * @param String $message
172 165
      * @since May 2, 2016 9:55:20 AM
173 166
      * @uses
174 167
      * @see
@@ -200,7 +193,6 @@  discard block
 block discarded – undo
200 193
     /**
201 194
      * The request field is not found
202 195
      * @author Shima Payro <[email protected]>
203
-     * @param String $message
204 196
      * @since May 2, 2016 9:55:20 AM
205 197
      * @uses
206 198
      * @see
Please login to merge, or discard this patch.
Spacing   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
      * @uses
14 14
      * @see
15 15
      */
16
-    public function succeed( $data ) {
16
+    public function succeed($data) {
17 17
 
18
-        return $this->setStatusCode( 200 )
19
-                    ->setStatusText( 'success' )
20
-                    ->respondWithResult( $data );
18
+        return $this->setStatusCode(200)
19
+                    ->setStatusText('success')
20
+                    ->respondWithResult($data);
21 21
 
22 22
     }
23 23
 
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
      * @uses
30 30
      * @see
31 31
      */
32
-    public function deleteSucceeded( $message = 'The requested parameter is deleted successfully!' ) {
32
+    public function deleteSucceeded($message = 'The requested parameter is deleted successfully!') {
33 33
 
34
-        return $this->setStatusCode( 200 )
35
-                    ->setStatusText( 'success' )
36
-                    ->respondWithMessage( $message );
34
+        return $this->setStatusCode(200)
35
+                    ->setStatusText('success')
36
+                    ->respondWithMessage($message);
37 37
 
38 38
     }
39 39
 
@@ -45,11 +45,11 @@  discard block
 block discarded – undo
45 45
      * @uses
46 46
      * @see
47 47
      */
48
-    public function updateSucceeded( $message = 'The requested parameter is updated successfully!' ) {
48
+    public function updateSucceeded($message = 'The requested parameter is updated successfully!') {
49 49
 
50
-        return $this->setStatusCode( 200 )
51
-                    ->setStatusText( 'success' )
52
-                    ->respondWithMessage( $message );
50
+        return $this->setStatusCode(200)
51
+                    ->setStatusText('success')
52
+                    ->respondWithMessage($message);
53 53
 
54 54
     }
55 55
 
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
      * @uses
62 62
      * @see
63 63
      */
64
-    public function insertSucceeded( $message = 'The requested parameter is Added successfully!' ) {
64
+    public function insertSucceeded($message = 'The requested parameter is Added successfully!') {
65 65
 
66
-        return $this->setStatusCode( 200 )
67
-                    ->setStatusText( 'success' )
68
-                    ->respondWithMessage( $message );
66
+        return $this->setStatusCode(200)
67
+                    ->setStatusText('success')
68
+                    ->respondWithMessage($message);
69 69
 
70 70
     }
71 71
 
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
      */
80 80
     public function deleteFaild() {
81 81
 
82
-        return $this->setStatusCode( 447 )
83
-                    ->setErrorCode( 5447 )
82
+        return $this->setStatusCode(447)
83
+                    ->setErrorCode(5447)
84 84
                     ->respondWithMessage();
85 85
 
86 86
     }
@@ -95,8 +95,8 @@  discard block
 block discarded – undo
95 95
      */
96 96
     public function updateFaild() {
97 97
 
98
-        return $this->setStatusCode( 449 )
99
-                    ->setErrorCode( 5449 )
98
+        return $this->setStatusCode(449)
99
+                    ->setErrorCode(5449)
100 100
                     ->respondWithMessage();
101 101
 
102 102
     }
@@ -111,8 +111,8 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public function insertFaild() {
113 113
 
114
-        return $this->setStatusCode( 448 )
115
-                    ->setErrorCode( 5448 )
114
+        return $this->setStatusCode(448)
115
+                    ->setErrorCode(5448)
116 116
                     ->respondWithMessage();
117 117
 
118 118
     }
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function connectionRefused() {
129 129
 
130
-        return $this->setStatusCode( 445 )
131
-                    ->setErrorCode( 5445 )
130
+        return $this->setStatusCode(445)
131
+                    ->setErrorCode(5445)
132 132
                     ->respondWithMessage();
133 133
 
134 134
     }
@@ -143,8 +143,8 @@  discard block
 block discarded – undo
143 143
      */
144 144
     public function notFound() {
145 145
 
146
-        return $this->setStatusCode( 404 )
147
-                    ->setErrorCode( 5404 )
146
+        return $this->setStatusCode(404)
147
+                    ->setErrorCode(5404)
148 148
                     ->respondWithMessage();
149 149
 
150 150
     }
@@ -159,8 +159,8 @@  discard block
 block discarded – undo
159 159
      */
160 160
     public function wrongParameters() {
161 161
 
162
-        return $this->setStatusCode( 406 )
163
-                    ->setErrorCode( 5406 )
162
+        return $this->setStatusCode(406)
163
+                    ->setErrorCode(5406)
164 164
                     ->respondWithMessage();
165 165
 
166 166
     }
@@ -175,8 +175,8 @@  discard block
 block discarded – undo
175 175
      */
176 176
     public function methodNotAllowed() {
177 177
 
178
-        return $this->setStatusCode( 405 )
179
-                    ->setErrorCode( 5405 )
178
+        return $this->setStatusCode(405)
179
+                    ->setErrorCode(5405)
180 180
                     ->respondWithMessage();
181 181
 
182 182
     }
@@ -189,11 +189,11 @@  discard block
 block discarded – undo
189 189
      * @uses
190 190
      * @see
191 191
      */
192
-    public function validationErrors( $data ) {
192
+    public function validationErrors($data) {
193 193
 
194
-        return $this->setStatusCode( 420 )
195
-                    ->setErrorCode( 5420 )
196
-                    ->respondWithResult( $data );
194
+        return $this->setStatusCode(420)
195
+                    ->setErrorCode(5420)
196
+                    ->respondWithResult($data);
197 197
 
198 198
     }
199 199
 
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
      */
208 208
     public function requestFieldNotFound() {
209 209
 
210
-        return $this->setStatusCode( 446 )
211
-                    ->setErrorCode( 1001 )
210
+        return $this->setStatusCode(446)
211
+                    ->setErrorCode(1001)
212 212
                     ->respondWithMessage();
213 213
 
214 214
     }
@@ -234,10 +234,10 @@  discard block
 block discarded – undo
234 234
      * @param $code integer
235 235
      * @return json
236 236
      */
237
-    public function error( $code ) {
237
+    public function error($code) {
238 238
 
239
-      return $this->SetStatusCode( 400 )
240
-                  ->setErrorCode( $code )
239
+      return $this->SetStatusCode(400)
240
+                  ->setErrorCode($code)
241 241
                   ->respondWithMessage();
242 242
 
243 243
     }
Please login to merge, or discard this patch.