Completed
Push — master ( 2bda8d...a58264 )
by
unknown
02:30
created
vendor/composer/autoload_static.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,24 +6,24 @@
 block discarded – undo
6 6
 
7 7
 class ComposerStaticInitb90bf1d271f3139658812a290f5c564b
8 8
 {
9
-    public static $prefixLengthsPsr4 = array (
9
+    public static $prefixLengthsPsr4 = array(
10 10
         'A' => 
11
-        array (
11
+        array(
12 12
             'Anetwork\\Respond\\' => 17,
13 13
         ),
14 14
     );
15 15
 
16
-    public static $prefixDirsPsr4 = array (
16
+    public static $prefixDirsPsr4 = array(
17 17
         'Anetwork\\Respond\\' => 
18
-        array (
19
-            0 => __DIR__ . '/../..' . '/src',
20
-            1 => __DIR__ . '/../..' . '/tests',
18
+        array(
19
+            0 => __DIR__.'/../..'.'/src',
20
+            1 => __DIR__.'/../..'.'/tests',
21 21
         ),
22 22
     );
23 23
 
24 24
     public static function getInitializer(ClassLoader $loader)
25 25
     {
26
-        return \Closure::bind(function () use ($loader) {
26
+        return \Closure::bind(function() use ($loader) {
27 27
             $loader->prefixLengthsPsr4 = ComposerStaticInitb90bf1d271f3139658812a290f5c564b::$prefixLengthsPsr4;
28 28
             $loader->prefixDirsPsr4 = ComposerStaticInitb90bf1d271f3139658812a290f5c564b::$prefixDirsPsr4;
29 29
 
Please login to merge, or discard this patch.
vendor/composer/autoload_psr4.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 $baseDir = dirname($vendorDir);
7 7
 
8 8
 return array(
9
-    'Anetwork\\Respond\\' => array($baseDir . '/src', $baseDir . '/tests'),
9
+    'Anetwork\\Respond\\' => array($baseDir.'/src', $baseDir.'/tests'),
10 10
 );
Please login to merge, or discard this patch.
vendor/composer/ClassLoader.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -123,20 +123,20 @@  discard block
 block discarded – undo
123 123
             return;
124 124
         }
125 125
 
126
-        $first = $prefix[0];
127
-        if (!isset($this->prefixesPsr0[$first][$prefix])) {
128
-            $this->prefixesPsr0[$first][$prefix] = (array) $paths;
126
+        $first = $prefix[ 0 ];
127
+        if (!isset($this->prefixesPsr0[ $first ][ $prefix ])) {
128
+            $this->prefixesPsr0[ $first ][ $prefix ] = (array) $paths;
129 129
 
130 130
             return;
131 131
         }
132 132
         if ($prepend) {
133
-            $this->prefixesPsr0[$first][$prefix] = array_merge(
133
+            $this->prefixesPsr0[ $first ][ $prefix ] = array_merge(
134 134
                 (array) $paths,
135
-                $this->prefixesPsr0[$first][$prefix]
135
+                $this->prefixesPsr0[ $first ][ $prefix ]
136 136
             );
137 137
         } else {
138
-            $this->prefixesPsr0[$first][$prefix] = array_merge(
139
-                $this->prefixesPsr0[$first][$prefix],
138
+            $this->prefixesPsr0[ $first ][ $prefix ] = array_merge(
139
+                $this->prefixesPsr0[ $first ][ $prefix ],
140 140
                 (array) $paths
141 141
             );
142 142
         }
@@ -167,24 +167,24 @@  discard block
 block discarded – undo
167 167
                     (array) $paths
168 168
                 );
169 169
             }
170
-        } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
170
+        } elseif (!isset($this->prefixDirsPsr4[ $prefix ])) {
171 171
             // Register directories for a new namespace.
172 172
             $length = strlen($prefix);
173
-            if ('\\' !== $prefix[$length - 1]) {
173
+            if ('\\' !== $prefix[ $length - 1 ]) {
174 174
                 throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
175 175
             }
176
-            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
177
-            $this->prefixDirsPsr4[$prefix] = (array) $paths;
176
+            $this->prefixLengthsPsr4[ $prefix[ 0 ] ][ $prefix ] = $length;
177
+            $this->prefixDirsPsr4[ $prefix ] = (array) $paths;
178 178
         } elseif ($prepend) {
179 179
             // Prepend directories for an already registered namespace.
180
-            $this->prefixDirsPsr4[$prefix] = array_merge(
180
+            $this->prefixDirsPsr4[ $prefix ] = array_merge(
181 181
                 (array) $paths,
182
-                $this->prefixDirsPsr4[$prefix]
182
+                $this->prefixDirsPsr4[ $prefix ]
183 183
             );
184 184
         } else {
185 185
             // Append directories for an already registered namespace.
186
-            $this->prefixDirsPsr4[$prefix] = array_merge(
187
-                $this->prefixDirsPsr4[$prefix],
186
+            $this->prefixDirsPsr4[ $prefix ] = array_merge(
187
+                $this->prefixDirsPsr4[ $prefix ],
188 188
                 (array) $paths
189 189
             );
190 190
         }
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
         if (!$prefix) {
203 203
             $this->fallbackDirsPsr0 = (array) $paths;
204 204
         } else {
205
-            $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
205
+            $this->prefixesPsr0[ $prefix[ 0 ] ][ $prefix ] = (array) $paths;
206 206
         }
207 207
     }
208 208
 
@@ -221,11 +221,11 @@  discard block
 block discarded – undo
221 221
             $this->fallbackDirsPsr4 = (array) $paths;
222 222
         } else {
223 223
             $length = strlen($prefix);
224
-            if ('\\' !== $prefix[$length - 1]) {
224
+            if ('\\' !== $prefix[ $length - 1 ]) {
225 225
                 throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
226 226
             }
227
-            $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
228
-            $this->prefixDirsPsr4[$prefix] = (array) $paths;
227
+            $this->prefixLengthsPsr4[ $prefix[ 0 ] ][ $prefix ] = $length;
228
+            $this->prefixDirsPsr4[ $prefix ] = (array) $paths;
229 229
         }
230 230
     }
231 231
 
@@ -314,15 +314,15 @@  discard block
 block discarded – undo
314 314
     public function findFile($class)
315 315
     {
316 316
         // work around for PHP 5.3.0 - 5.3.2 https://bugs.php.net/50731
317
-        if ('\\' == $class[0]) {
317
+        if ('\\' == $class[ 0 ]) {
318 318
             $class = substr($class, 1);
319 319
         }
320 320
 
321 321
         // class map lookup
322
-        if (isset($this->classMap[$class])) {
323
-            return $this->classMap[$class];
322
+        if (isset($this->classMap[ $class ])) {
323
+            return $this->classMap[ $class ];
324 324
         }
325
-        if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
325
+        if ($this->classMapAuthoritative || isset($this->missingClasses[ $class ])) {
326 326
             return false;
327 327
         }
328 328
 
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 
336 336
         if (false === $file) {
337 337
             // Remember that this class does not exist.
338
-            $this->missingClasses[$class] = true;
338
+            $this->missingClasses[ $class ] = true;
339 339
         }
340 340
 
341 341
         return $file;
@@ -344,14 +344,14 @@  discard block
 block discarded – undo
344 344
     private function findFileWithExtension($class, $ext)
345 345
     {
346 346
         // PSR-4 lookup
347
-        $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
347
+        $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext;
348 348
 
349
-        $first = $class[0];
350
-        if (isset($this->prefixLengthsPsr4[$first])) {
351
-            foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
349
+        $first = $class[ 0 ];
350
+        if (isset($this->prefixLengthsPsr4[ $first ])) {
351
+            foreach ($this->prefixLengthsPsr4[ $first ] as $prefix => $length) {
352 352
                 if (0 === strpos($class, $prefix)) {
353
-                    foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
354
-                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
353
+                    foreach ($this->prefixDirsPsr4[ $prefix ] as $dir) {
354
+                        if (file_exists($file = $dir.DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $length))) {
355 355
                             return $file;
356 356
                         }
357 357
                     }
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
 
362 362
         // PSR-4 fallback dirs
363 363
         foreach ($this->fallbackDirsPsr4 as $dir) {
364
-            if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
364
+            if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) {
365 365
                 return $file;
366 366
             }
367 367
         }
@@ -373,14 +373,14 @@  discard block
 block discarded – undo
373 373
                 . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
374 374
         } else {
375 375
             // PEAR-like class name
376
-            $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
376
+            $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext;
377 377
         }
378 378
 
379
-        if (isset($this->prefixesPsr0[$first])) {
380
-            foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
379
+        if (isset($this->prefixesPsr0[ $first ])) {
380
+            foreach ($this->prefixesPsr0[ $first ] as $prefix => $dirs) {
381 381
                 if (0 === strpos($class, $prefix)) {
382 382
                     foreach ($dirs as $dir) {
383
-                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
383
+                        if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) {
384 384
                             return $file;
385 385
                         }
386 386
                     }
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 
391 391
         // PSR-0 fallback dirs
392 392
         foreach ($this->fallbackDirsPsr0 as $dir) {
393
-            if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
393
+            if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) {
394 394
                 return $file;
395 395
             }
396 396
         }
Please login to merge, or discard this patch.
vendor/composer/autoload_real.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
     public static function loadClassLoader($class)
10 10
     {
11 11
         if ('Composer\Autoload\ClassLoader' === $class) {
12
-            require __DIR__ . '/ClassLoader.php';
12
+            require __DIR__.'/ClassLoader.php';
13 13
         }
14 14
     }
15 15
 
@@ -25,21 +25,21 @@  discard block
 block discarded – undo
25 25
 
26 26
         $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
27 27
         if ($useStaticLoader) {
28
-            require_once __DIR__ . '/autoload_static.php';
28
+            require_once __DIR__.'/autoload_static.php';
29 29
 
30 30
             call_user_func(\Composer\Autoload\ComposerStaticInitb90bf1d271f3139658812a290f5c564b::getInitializer($loader));
31 31
         } else {
32
-            $map = require __DIR__ . '/autoload_namespaces.php';
32
+            $map = require __DIR__.'/autoload_namespaces.php';
33 33
             foreach ($map as $namespace => $path) {
34 34
                 $loader->set($namespace, $path);
35 35
             }
36 36
 
37
-            $map = require __DIR__ . '/autoload_psr4.php';
37
+            $map = require __DIR__.'/autoload_psr4.php';
38 38
             foreach ($map as $namespace => $path) {
39 39
                 $loader->setPsr4($namespace, $path);
40 40
             }
41 41
 
42
-            $classMap = require __DIR__ . '/autoload_classmap.php';
42
+            $classMap = require __DIR__.'/autoload_classmap.php';
43 43
             if ($classMap) {
44 44
                 $loader->addClassMap($classMap);
45 45
             }
Please login to merge, or discard this patch.
vendor/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 // autoload.php @generated by Composer
4 4
 
5
-require_once __DIR__ . '/composer' . '/autoload_real.php';
5
+require_once __DIR__.'/composer'.'/autoload_real.php';
6 6
 
7 7
 return ComposerAutoloaderInitb90bf1d271f3139658812a290f5c564b::getLoader();
Please login to merge, or discard this patch.
src/RespondServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 	private function registerMessages()
37 37
 	{
38 38
 
39
-		$this->app->bind( 'Anetwork\Respond\Messages', function() {
39
+		$this->app->bind('Anetwork\Respond\Messages', function() {
40 40
 
41 41
 			return new Messages();
42 42
 
Please login to merge, or discard this patch.
src/Messages.php 1 patch
Spacing   +51 added lines, -51 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,9 +79,9 @@  discard block
 block discarded – undo
79 79
 	 */
80 80
 	public function deleteFaild() {
81 81
 
82
-		return $this->setStatusCode( 447 )
83
-					->setStatusText( 'fail' )
84
-					->setErrorCode( 5447 )
82
+		return $this->setStatusCode(447)
83
+					->setStatusText('fail')
84
+					->setErrorCode(5447)
85 85
 					->respondWithMessage();
86 86
 
87 87
 	}
@@ -96,9 +96,9 @@  discard block
 block discarded – undo
96 96
 	 */
97 97
 	public function updateFaild() {
98 98
 
99
-		return $this->setStatusCode( 449 )
100
-					->setStatusText( 'fail' )
101
-					->setErrorCode( 5449 )
99
+		return $this->setStatusCode(449)
100
+					->setStatusText('fail')
101
+					->setErrorCode(5449)
102 102
 					->respondWithMessage();
103 103
 
104 104
 	}
@@ -113,9 +113,9 @@  discard block
 block discarded – undo
113 113
 	 */
114 114
 	public function insertFaild() {
115 115
 
116
-		return $this->setStatusCode( 448 )
117
-					->setStatusText( 'fail' )
118
-					->setErrorCode( 5448 )
116
+		return $this->setStatusCode(448)
117
+					->setStatusText('fail')
118
+					->setErrorCode(5448)
119 119
 					->respondWithMessage();
120 120
 
121 121
 	}
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
 	 */
131 131
 	public function connectionRefused() {
132 132
 
133
-		return $this->setStatusCode( 445 )
134
-					->setStatusText( 'fail' )
135
-					->setErrorCode( 5445 )
133
+		return $this->setStatusCode(445)
134
+					->setStatusText('fail')
135
+					->setErrorCode(5445)
136 136
 					->respondWithMessage();
137 137
 
138 138
 	}
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
 	 */
148 148
 	public function notFound() {
149 149
 
150
-		return $this->setStatusCode( 404 )
151
-					->setStatusText( 'fail' )
152
-					->setErrorCode( 5404 )
150
+		return $this->setStatusCode(404)
151
+					->setStatusText('fail')
152
+					->setErrorCode(5404)
153 153
 					->respondWithMessage();
154 154
 
155 155
 	}
@@ -164,9 +164,9 @@  discard block
 block discarded – undo
164 164
 	 */
165 165
 	public function wrongParameters() {
166 166
 
167
-		return $this->setStatusCode( 406 )
168
-					->setStatusText( 'fail' )
169
-					->setErrorCode( 5406 )
167
+		return $this->setStatusCode(406)
168
+					->setStatusText('fail')
169
+					->setErrorCode(5406)
170 170
 					->respondWithMessage();
171 171
 
172 172
 	}
@@ -181,9 +181,9 @@  discard block
 block discarded – undo
181 181
 	 */
182 182
 	public function methodNotAllowed() {
183 183
 
184
-		return $this->setStatusCode( 405 )
185
-					->setStatusText( 'fail' )
186
-					->setErrorCode( 5405 )
184
+		return $this->setStatusCode(405)
185
+					->setStatusText('fail')
186
+					->setErrorCode(5405)
187 187
 					->respondWithMessage();
188 188
 
189 189
 	}
@@ -196,12 +196,12 @@  discard block
 block discarded – undo
196 196
 	 * @uses
197 197
 	 * @see
198 198
 	 */
199
-	public function validationErrors( $data ) {
199
+	public function validationErrors($data) {
200 200
 
201
-		return $this->setStatusCode( 420 )
202
-					->setStatusText( 'fail' )
203
-					->setErrorCode( 5420 )
204
-					->respondWithResult( $data );
201
+		return $this->setStatusCode(420)
202
+					->setStatusText('fail')
203
+					->setErrorCode(5420)
204
+					->respondWithResult($data);
205 205
 
206 206
 	}
207 207
 
@@ -215,9 +215,9 @@  discard block
 block discarded – undo
215 215
 	 */
216 216
 	public function requestFieldNotFound() {
217 217
 
218
-		return $this->setStatusCode( 446 )
219
-					->setStatusText( 'fail' )
220
-					->setErrorCode( 1001 )
218
+		return $this->setStatusCode(446)
219
+					->setStatusText('fail')
220
+					->setErrorCode(1001)
221 221
 					->respondWithMessage();
222 222
 
223 223
 	}
@@ -230,8 +230,8 @@  discard block
 block discarded – undo
230 230
 	 */
231 231
 	public function requestFieldDuplicated() {
232 232
 
233
-	  return $this->setStatusCode( 400 )
234
-					->setStatusText( 'fail' )
233
+	  return $this->setStatusCode(400)
234
+					->setStatusText('fail')
235 235
 					->SetErrorCode(1004)
236 236
 					->respondWithMessage();
237 237
 
@@ -244,11 +244,11 @@  discard block
 block discarded – undo
244 244
 	 * @param $code integer
245 245
 	 * @return json
246 246
 	 */
247
-	public function error( $code ) {
247
+	public function error($code) {
248 248
 
249
-	  return $this->SetStatusCode( 400 )
250
-					->setStatusText( 'fail' )
251
-					->setErrorCode( $code )
249
+	  return $this->SetStatusCode(400)
250
+					->setStatusText('fail')
251
+					->setErrorCode($code)
252 252
 					->respondWithMessage();
253 253
 
254 254
 	}
Please login to merge, or discard this patch.
src/Main.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 * Haeders
35 35
 	 * @var array
36 36
 	 */
37
-	protected $headers = [];
37
+	protected $headers = [ ];
38 38
 
39 39
 	/**
40 40
 	 * Getter for $statusCode
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 * @uses
59 59
 	 * @see
60 60
 	 */
61
-	public function setStatusCode( $statusCode ) {
61
+	public function setStatusCode($statusCode) {
62 62
 
63 63
 		$this->statusCode = $statusCode;
64 64
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	 * @uses
89 89
 	 * @see
90 90
 	 */
91
-	public function setStatusText( $statusText ) {
91
+	public function setStatusText($statusText) {
92 92
 
93 93
 		$this->statusText = $statusText;
94 94
 
@@ -105,15 +105,15 @@  discard block
 block discarded – undo
105 105
 	 * @uses
106 106
 	 * @see
107 107
 	 */
108
-	public function respond( $data ) {
108
+	public function respond($data) {
109 109
 
110
-		$result = array_filter( $this->getHeaders() );
110
+		$result = array_filter($this->getHeaders());
111 111
 
112
-		if ( empty( $result ) );
113
-			return response()->json( $data, $this->getStatusCode() );
112
+		if (empty($result));
113
+			return response()->json($data, $this->getStatusCode());
114 114
 			
115
-		return response()->json( $data, $this->getStatusCode() )
116
-						->withHeaders( $this->getHeaders() );
115
+		return response()->json($data, $this->getStatusCode())
116
+						->withHeaders($this->getHeaders());
117 117
 
118 118
 	}
119 119
 
@@ -126,12 +126,12 @@  discard block
 block discarded – undo
126 126
 	 * @uses
127 127
 	 * @see
128 128
 	 */
129
-	public function respondWithMessage( $message = NULL ) {
129
+	public function respondWithMessage($message = NULL) {
130 130
 
131 131
 		$res[ 'status' ] = $this->getStatusText();
132 132
 
133 133
 		//if it's about failure
134
-		if ( $this->getErrorCode() ) {
134
+		if ($this->getErrorCode()) {
135 135
 
136 136
 			$res[ 'error' ] = $this->getErrorCode();
137 137
 			$res[ 'message' ] = $this->getErrorMessage();
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 
143 143
 		}
144 144
 
145
-		return $this->respond( $res );
145
+		return $this->respond($res);
146 146
 
147 147
 	}
148 148
 
@@ -153,9 +153,9 @@  discard block
 block discarded – undo
153 153
 	 * @param $errorCode integer
154 154
 	 * @return instance
155 155
 	 */
156
-	public function setErrorCode( $errorCode ) {
156
+	public function setErrorCode($errorCode) {
157 157
 
158
-		$this->error = config( 'errors.' . $errorCode );
158
+		$this->error = config('errors.'.$errorCode);
159 159
 
160 160
 		$this->errorCode = $errorCode;
161 161
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 */
184 184
 	public function getErrorMessage() {
185 185
 
186
-		return $this->error['message'];
186
+		return $this->error[ 'message' ];
187 187
 
188 188
 	}
189 189
 
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
 	 * @since Sep 13, 2016
206 206
 	 * @return array
207 207
 	 */
208
-	public function setHeaders( $headers = [] ) {
208
+	public function setHeaders($headers = [ ]) {
209 209
 
210 210
 		$this->headers = $headers;
211 211
 
@@ -222,12 +222,12 @@  discard block
 block discarded – undo
222 222
 	 * @uses
223 223
 	 * @see
224 224
 	 */
225
-	 public function respondWithResult( $data = NULL ) {
225
+	 public function respondWithResult($data = NULL) {
226 226
 
227 227
 		$res[ 'status' ] = $this->getStatusText();
228 228
 
229 229
 		//if it's about laravel validation error
230
-		if ( $this->getErrorCode() && $this->getStatusCode() == 420 ) {
230
+		if ($this->getErrorCode() && $this->getStatusCode() == 420) {
231 231
 
232 232
 			$res[ 'error' ] = $this->getErrorCode();
233 233
 			$res[ 'message' ] = $data;
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
 		}
240 240
 
241
-		return $this->respond( $res );
241
+		return $this->respond($res);
242 242
 
243 243
 	}
244 244
 
Please login to merge, or discard this patch.