Completed
Pull Request — develop (#302)
by John
03:42
created
Alpha/Controller/ActiveRecordController.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      * @throws Alpha\Exception\ResourceNotFoundException
162 162
      * @throws Alpha\Exception\IllegalArguementException
163 163
      *
164
-     * @return Alpha\Util\Http\Response
164
+     * @return Response
165 165
      *
166 166
      * @since 2.0
167 167
      */
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
      * @throws Alpha\Exception\IllegalArguementException
349 349
      * @throws Alpha\Exception\SecurityException
350 350
      *
351
-     * @return Alpha\Util\Http\Response
351
+     * @return Response
352 352
      *
353 353
      * @since 2.0
354 354
      *
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
      * @throws Alpha\Exception\IllegalArguementException
439 439
      * @throws Alpha\Exception\SecurityException
440 440
      *
441
-     * @return Alpha\Util\Http\Response
441
+     * @return Response
442 442
      *
443 443
      * @since 2.0
444 444
      *
@@ -532,7 +532,7 @@  discard block
 block discarded – undo
532 532
      * @throws Alpha\Exception\IllegalArguementException
533 533
      * @throws Alpha\Exception\SecurityException
534 534
      *
535
-     * @return Alpha\Util\Http\Response
535
+     * @return Response
536 536
      *
537 537
      * @since 2.0
538 538
      */
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -690,7 +690,7 @@  discard block
 block discarded – undo
690 690
         $body = '';
691 691
 
692 692
         // the index of the last record displayed on this page
693
-        $last = $this->start + $config->get('app.list.page.amount');
693
+        $last = $this->start+$config->get('app.list.page.amount');
694 694
 
695 695
         // ensure that the last index never overruns the total record count
696 696
         if ($last > $this->recordCount) {
@@ -710,9 +710,9 @@  discard block
 block discarded – undo
710 710
         if ($this->start > 0) {
711 711
             // handle secure URLs
712 712
             if ($this->request->getParam('token', null) != null) {
713
-                $body .= '<li><a href="'.FrontController::generateSecureURL('act=Alpha\Controller\ActiveRecordController&ActiveRecordType='.$this->request->getParam('ActiveRecordType').'&start='.($this->start - $this->limit).'&limit='.$this->limit).'">&lt;&lt;-Previous</a></li>';
713
+                $body .= '<li><a href="'.FrontController::generateSecureURL('act=Alpha\Controller\ActiveRecordController&ActiveRecordType='.$this->request->getParam('ActiveRecordType').'&start='.($this->start-$this->limit).'&limit='.$this->limit).'">&lt;&lt;-Previous</a></li>';
714 714
             } else {
715
-                $body .= '<li><a href="/records/'.urlencode($this->request->getParam('ActiveRecordType')).'/'.($this->start - $this->limit).'/'.$this->limit.'">&lt;&lt;-Previous</a></li>';
715
+                $body .= '<li><a href="/records/'.urlencode($this->request->getParam('ActiveRecordType')).'/'.($this->start-$this->limit).'/'.$this->limit.'">&lt;&lt;-Previous</a></li>';
716 716
             }
717 717
         } elseif ($this->recordCount > $this->limit) {
718 718
             $body .= '<li class="disabled"><a href="#">&lt;&lt;-Previous</a></li>';
@@ -742,9 +742,9 @@  discard block
 block discarded – undo
742 742
         if ($this->recordCount > $last) {
743 743
             // handle secure URLs
744 744
             if ($this->request->getParam('token', null) != null) {
745
-                $body .= '<li><a href="'.FrontController::generateSecureURL('act=Alpha\Controller\ActiveRecordController&ActiveRecordType='.$this->request->getParam('ActiveRecordType').'&start='.($this->start + $this->limit).'&limit='.$this->limit).'">Next-&gt;&gt;</a></li>';
745
+                $body .= '<li><a href="'.FrontController::generateSecureURL('act=Alpha\Controller\ActiveRecordController&ActiveRecordType='.$this->request->getParam('ActiveRecordType').'&start='.($this->start+$this->limit).'&limit='.$this->limit).'">Next-&gt;&gt;</a></li>';
746 746
             } else {
747
-                $body .= '<li><a href="/records/'.urlencode($this->request->getParam('ActiveRecordType')).'/'.($this->start + $this->limit.'/'.$this->limit).
747
+                $body .= '<li><a href="/records/'.urlencode($this->request->getParam('ActiveRecordType')).'/'.($this->start+$this->limit.'/'.$this->limit).
748 748
                     '">Next-&gt;&gt;</a></li>';
749 749
             }
750 750
         } elseif ($this->recordCount > $this->limit) {
Please login to merge, or discard this patch.
Alpha/Controller/ArticleController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @param Alpha\Util\Http\Request
101 101
      *
102
-     * @return Alpha\Util\Http\Response
102
+     * @return Response
103 103
      *
104 104
      * @throws Alpha\Exception\ResourceNotFoundException
105 105
      *
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
      *
312 312
      * @param Alpha\Util\Http\Request
313 313
      *
314
-     * @return Alpha\Util\Http\Response
314
+     * @return Response
315 315
      *
316 316
      * @since 1.0
317 317
      */
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
      *
426 426
      * @param Alpha\Util\Http\Request
427 427
      *
428
-     * @return Alpha\Util\Http\Response
428
+     * @return Response
429 429
      *
430 430
      * @since 2.0
431 431
      */
Please login to merge, or discard this patch.
Alpha/Controller/Controller.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -999,7 +999,7 @@  discard block
 block discarded – undo
999 999
     /**
1000 1000
      * Method to return an access error for trespassing users.  HTTP response header code will be 403.
1001 1001
      *
1002
-     * @return Alpha\Util\Http\Response
1002
+     * @return Response
1003 1003
      *
1004 1004
      * @since 1.0
1005 1005
      */
@@ -1179,7 +1179,7 @@  discard block
 block discarded – undo
1179 1179
     /**
1180 1180
      * Generates the two security fields to prevent remote form processing.
1181 1181
      *
1182
-     * @return array An array containing the two fields
1182
+     * @return string[] An array containing the two fields
1183 1183
      *
1184 1184
      * @since 1.0
1185 1185
      */
@@ -1531,7 +1531,7 @@  discard block
 block discarded – undo
1531 1531
      *
1532 1532
      * @param Alpha\Util\Http\Request $request
1533 1533
      *
1534
-     * @return Alpha\Util\Http\Response
1534
+     * @return Response
1535 1535
      *
1536 1536
      * @since 2.0
1537 1537
      */
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -511,19 +511,19 @@  discard block
 block discarded – undo
511 511
             }
512 512
             // found the current job
513 513
             if ($this->name == $jobs[$i]) {
514
-                if (isset($jobs[$i - 1])) {
514
+                if (isset($jobs[$i-1])) {
515 515
                     // set the previous job if it exists
516
-                    $this->previousJob = $jobs[$i - 1];
516
+                    $this->previousJob = $jobs[$i-1];
517 517
                     self::$logger->debug('Previous job ['.$this->previousJob.']');
518 518
                 }
519
-                if (isset($jobs[$i + 1])) {
519
+                if (isset($jobs[$i+1])) {
520 520
                     // set the next job if it exists
521
-                    $this->nextJob = $jobs[$i + 1];
521
+                    $this->nextJob = $jobs[$i+1];
522 522
                     self::$logger->debug('Next job ['.$this->nextJob.']');
523 523
                 }
524 524
             }
525 525
             // the last job in the sequence
526
-            if ($i == ($numOfJobs - 1)) {
526
+            if ($i == ($numOfJobs-1)) {
527 527
                 $this->lastJob = $jobs[$i];
528 528
             }
529 529
         }
@@ -687,9 +687,9 @@  discard block
 block discarded – undo
687 687
             $this->unitEndTime->getYear()
688 688
             );
689 689
 
690
-        self::$logger->debug('<<getUnitDuration ['.$intEndTime - $intStartTime.']');
690
+        self::$logger->debug('<<getUnitDuration ['.$intEndTime-$intStartTime.']');
691 691
 
692
-        return $intEndTime - $intStartTime;
692
+        return $intEndTime-$intStartTime;
693 693
     }
694 694
 
695 695
     /**
@@ -1159,7 +1159,7 @@  discard block
 block discarded – undo
1159 1159
              */
1160 1160
 
1161 1161
             // the server hostname + today's date less 1 hour (i.e. yesterday where time is < 1:00AM)
1162
-            $var1 = rtrim(strtr(base64_encode(SecurityUtils::encrypt($host.date('Ymd', (time() - 3600)))), '+/', '-_'), '=');
1162
+            $var1 = rtrim(strtr(base64_encode(SecurityUtils::encrypt($host.date('Ymd', (time()-3600)))), '+/', '-_'), '=');
1163 1163
             // the server's IP plus $var1
1164 1164
             $var2 = rtrim(strtr(base64_encode(SecurityUtils::encrypt($ip.$var1)), '+/', '-_'), '=');
1165 1165
 
Please login to merge, or discard this patch.
Alpha/Controller/Front/FrontController.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -551,7 +551,7 @@  discard block
 block discarded – undo
551 551
      *
552 552
      * @throws Alpha\Exception\IllegalArguementException
553 553
      *
554
-     * @return Alpha\Controller\Front\FrontController
554
+     * @return FrontController
555 555
      *
556 556
      * @since 2.0
557 557
      */
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
      * @param string $param        The param name (as defined on the route between {} braces)
574 574
      * @param mixed  $defaultValue The value to use
575 575
      *
576
-     * @return Alpha\Controller\Front\FrontController
576
+     * @return FrontController
577 577
      *
578 578
      * @since 2.0
579 579
      */
@@ -637,7 +637,7 @@  discard block
 block discarded – undo
637 637
      *
638 638
      * @param Alpha\Util\Http\Request $request The request to process
639 639
      *
640
-     * @return Alpha\Util\Http\Response
640
+     * @return Response
641 641
      *
642 642
      * @throws Alpha\Exception\ResourceNotFoundException
643 643
      * @throws Alpha\Exception\ResourceNotAllowedException
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -615,7 +615,7 @@
 block discarded – undo
615 615
                 }
616 616
             }
617 617
 
618
-             // route URIs with params missing (will attempt to layer on defaults later on in Request class)
618
+                // route URIs with params missing (will attempt to layer on defaults later on in Request class)
619 619
             foreach ($this->routes as $route => $callback) {
620 620
                 $pattern = '#^'.$route.'$#s';
621 621
                 $pattern = preg_replace('#\/\{\S+\}#', '\/?', $pattern);
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -176,145 +176,145 @@  discard block
 block discarded – undo
176 176
             throw new BadRequestException('Request character encoding does not match expected UTF-8');
177 177
         }
178 178
 
179
-        $this->addRoute('/', function ($request) {
179
+        $this->addRoute('/', function($request) {
180 180
             $controller = new IndexController();
181 181
 
182 182
             return $controller->process($request);
183 183
         });
184 184
 
185
-        $this->addRoute('/a/{title}/{view}', function ($request) {
185
+        $this->addRoute('/a/{title}/{view}', function($request) {
186 186
             $controller = new ArticleController();
187 187
 
188 188
             return $controller->process($request);
189 189
         })->value('title', null)->value('view', 'detailed');
190 190
 
191
-        $this->addRoute('/articles/{start}/{limit}', function ($request) {
191
+        $this->addRoute('/articles/{start}/{limit}', function($request) {
192 192
             $controller = new ArticleController();
193 193
 
194 194
             return $controller->process($request);
195 195
         })->value('start', 0)->value('limit', $config->get('app.list.page.amount'));
196 196
 
197
-        $this->addRoute('/attach/{articleOID}/{filename}', function ($request) {
197
+        $this->addRoute('/attach/{articleOID}/{filename}', function($request) {
198 198
             $controller = new AttachmentController();
199 199
 
200 200
             return $controller->process($request);
201 201
         });
202 202
 
203
-        $this->addRoute('/cache', function ($request) {
203
+        $this->addRoute('/cache', function($request) {
204 204
             $controller = new CacheController();
205 205
 
206 206
             return $controller->process($request);
207 207
         });
208 208
 
209
-        $this->addRoute('/denum/{denumOID}', function ($request) {
209
+        $this->addRoute('/denum/{denumOID}', function($request) {
210 210
             $controller = new DEnumController();
211 211
 
212 212
             return $controller->process($request);
213 213
         })->value('denumOID', null);
214 214
 
215
-        $this->addRoute('/excel/{ActiveRecordType}/{ActiveRecordOID}', function ($request) {
215
+        $this->addRoute('/excel/{ActiveRecordType}/{ActiveRecordOID}', function($request) {
216 216
             $controller = new ExcelController();
217 217
 
218 218
             return $controller->process($request);
219 219
         })->value('ActiveRecordOID', null);
220 220
 
221
-        $this->addRoute('/feed/{ActiveRecordType}/{type}', function ($request) {
221
+        $this->addRoute('/feed/{ActiveRecordType}/{type}', function($request) {
222 222
             $controller = new FeedController();
223 223
 
224 224
             return $controller->process($request);
225 225
         })->value('type', 'Atom');
226 226
 
227
-        $this->addRoute('/gensecure', function ($request) {
227
+        $this->addRoute('/gensecure', function($request) {
228 228
             $controller = new GenSecureQueryStringController();
229 229
 
230 230
             return $controller->process($request);
231 231
         });
232 232
 
233
-        $this->addRoute('/image/{source}/{width}/{height}/{type}/{quality}/{scale}/{secure}/{var1}/{var2}', function ($request) {
233
+        $this->addRoute('/image/{source}/{width}/{height}/{type}/{quality}/{scale}/{secure}/{var1}/{var2}', function($request) {
234 234
             $controller = new ImageController();
235 235
 
236 236
             return $controller->process($request);
237 237
         })->value('var1', null)->value('var2', null);
238 238
 
239
-        $this->addRoute('/listactiverecords', function ($request) {
239
+        $this->addRoute('/listactiverecords', function($request) {
240 240
             $controller = new ListActiveRecordsController();
241 241
 
242 242
             return $controller->process($request);
243 243
         });
244 244
 
245
-        $this->addRoute('/log/{logPath}', function ($request) {
245
+        $this->addRoute('/log/{logPath}', function($request) {
246 246
             $controller = new LogController();
247 247
 
248 248
             return $controller->process($request);
249 249
         });
250 250
 
251
-        $this->addRoute('/login', function ($request) {
251
+        $this->addRoute('/login', function($request) {
252 252
             $controller = new LoginController();
253 253
 
254 254
             return $controller->process($request);
255 255
         });
256 256
 
257
-        $this->addRoute('/logout', function ($request) {
257
+        $this->addRoute('/logout', function($request) {
258 258
             $controller = new LogoutController();
259 259
 
260 260
             return $controller->process($request);
261 261
         });
262 262
 
263
-        $this->addRoute('/metric', function ($request) {
263
+        $this->addRoute('/metric', function($request) {
264 264
             $controller = new MetricController();
265 265
 
266 266
             return $controller->process($request);
267 267
         });
268 268
 
269
-        $this->addRoute('/recordselector/12m/{ActiveRecordOID}/{field}/{relatedClass}/{relatedClassField}/{relatedClassDisplayField}/{relationType}', function ($request) {
269
+        $this->addRoute('/recordselector/12m/{ActiveRecordOID}/{field}/{relatedClass}/{relatedClassField}/{relatedClassDisplayField}/{relationType}', function($request) {
270 270
             $controller = new RecordSelectorController();
271 271
 
272 272
             return $controller->process($request);
273 273
         })->value('relationType', 'ONE-TO-MANY');
274 274
 
275
-        $this->addRoute('/recordselector/m2m/{ActiveRecordOID}/{field}/{relatedClassLeft}/{relatedClassLeftDisplayField}/{relatedClassRight}/{relatedClassRightDisplayField}/{accessingClassName}/{lookupOIDs}/{relationType}', function ($request) {
275
+        $this->addRoute('/recordselector/m2m/{ActiveRecordOID}/{field}/{relatedClassLeft}/{relatedClassLeftDisplayField}/{relatedClassRight}/{relatedClassRightDisplayField}/{accessingClassName}/{lookupOIDs}/{relationType}', function($request) {
276 276
             $controller = new RecordSelectorController();
277 277
 
278 278
             return $controller->process($request);
279 279
         })->value('relationType', 'MANY-TO-MANY');
280 280
 
281
-        $this->addRoute('/search/{query}/{start}/{limit}', function ($request) {
281
+        $this->addRoute('/search/{query}/{start}/{limit}', function($request) {
282 282
             $controller = new SearchController();
283 283
 
284 284
             return $controller->process($request);
285 285
         })->value('start', 0)->value('limit', $config->get('app.list.page.amount'));
286 286
 
287
-        $this->addRoute('/sequence/{start}/{limit}', function ($request) {
287
+        $this->addRoute('/sequence/{start}/{limit}', function($request) {
288 288
             $controller = new SequenceController();
289 289
 
290 290
             return $controller->process($request);
291 291
         })->value('start', 0)->value('limit', $config->get('app.list.page.amount'));
292 292
 
293
-        $this->addRoute('/tag/{ActiveRecordType}/{ActiveRecordOID}', function ($request) {
293
+        $this->addRoute('/tag/{ActiveRecordType}/{ActiveRecordOID}', function($request) {
294 294
             $controller = new TagController();
295 295
 
296 296
             return $controller->process($request);
297 297
         });
298 298
 
299
-        $this->addRoute('/install', function ($request) {
299
+        $this->addRoute('/install', function($request) {
300 300
             $controller = new InstallController();
301 301
 
302 302
             return $controller->process($request);
303 303
         });
304 304
 
305
-        $this->addRoute('/record/{ActiveRecordType}/{ActiveRecordOID}/{view}', function ($request) {
305
+        $this->addRoute('/record/{ActiveRecordType}/{ActiveRecordOID}/{view}', function($request) {
306 306
             $controller = new ActiveRecordController();
307 307
 
308 308
             return $controller->process($request);
309 309
         })->value('ActiveRecordOID', null)->value('view', 'detailed');
310 310
 
311
-        $this->addRoute('/records/{ActiveRecordType}/{start}/{limit}', function ($request) {
311
+        $this->addRoute('/records/{ActiveRecordType}/{start}/{limit}', function($request) {
312 312
             $controller = new ActiveRecordController();
313 313
 
314 314
             return $controller->process($request);
315 315
         })->value('start', 0)->value('limit', $config->get('app.list.page.amount'));
316 316
 
317
-        $this->addRoute('/tk/{token}', function ($request) {
317
+        $this->addRoute('/tk/{token}', function($request) {
318 318
             $params = self::getDecodeQueryParams($request->getParam('token'));
319 319
 
320 320
             if (isset($params['act'])) {
@@ -341,14 +341,14 @@  discard block
 block discarded – undo
341 341
             return new Response(404, 'Resource not found');
342 342
         });
343 343
 
344
-        $this->addRoute('/alpha/service', function ($request) {
344
+        $this->addRoute('/alpha/service', function($request) {
345 345
             $controller = new LoginController();
346 346
             $controller->setUnitOfWork(array('Alpha\Controller\LoginController', 'Alpha\Controller\ListActiveRecordsController'));
347 347
 
348 348
             return $controller->process($request);
349 349
         });
350 350
 
351
-        $this->addRoute('/phpinfo', function ($request) {
351
+        $this->addRoute('/phpinfo', function($request) {
352 352
             $controller = new PhpinfoController();
353 353
 
354 354
             return $controller->process($request);
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
      */
493 493
     private static function multipleExplode($string, $delimiters = array())
494 494
     {
495
-        $mainDelim = $delimiters[count($delimiters) - 1];
495
+        $mainDelim = $delimiters[count($delimiters)-1];
496 496
 
497 497
         array_pop($delimiters);
498 498
 
Please login to merge, or discard this patch.
Alpha/Controller/GenSecureQueryStringController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      *
92 92
      * @param Alpha\Util\Http\Request $request
93 93
      *
94
-     * @return Alpha\Util\Http\Response
94
+     * @return Response
95 95
      *
96 96
      * @since 1.0
97 97
      */
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      *
116 116
      * @param Alpha\Util\Http\Request $request
117 117
      *
118
-     * @return Alpha\Util\Http\Response
118
+     * @return Response
119 119
      *
120 120
      * @since 1.0
121 121
      */
Please login to merge, or discard this patch.
Alpha/Controller/InstallController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      *
95 95
      * @param Alpha\Util\Http\Request $request
96 96
      *
97
-     * @return Alpha\Util\Http\Response
97
+     * @return Response
98 98
      *
99 99
      * @since 1.0
100 100
      */
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
      * Custom version of the check rights method that only checks for a session for the config admin username/password,
415 415
      * when the system database is not set-up.
416 416
      *
417
-     * @return bool
417
+     * @return boolean|null
418 418
      *
419 419
      * @since 1.0
420 420
      */
Please login to merge, or discard this patch.
Alpha/Controller/ListActiveRecordsController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @param alpha\Util\Http\Request $request
98 98
      *
99
-     * @return alpha\Util\Http\Response
99
+     * @return Response
100 100
      *
101 101
      * @since 1.0
102 102
      */
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      *
121 121
      * @param alpha\Util\Http\Request $request
122 122
      *
123
-     * @return alpha\Util\Http\Response
123
+     * @return Response
124 124
      *
125 125
      * @since 1.0
126 126
      */
Please login to merge, or discard this patch.
Alpha/Controller/LoginController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      *
121 121
      * @param Alpha\Util\Http\Request $request
122 122
      *
123
-     * @return Alpha\Util\Http\Response
123
+     * @return Response
124 124
      *
125 125
      * @throws Alpha\Exception\IllegalArguementException
126 126
      *
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
      *
157 157
      * @param Alpha\Util\Http\Request $request
158 158
      *
159
-     * @return Alpha\Util\Http\Response
159
+     * @return Response|null
160 160
      *
161 161
      * @throws Alpha\Exception\IllegalArguementException
162 162
      *
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
      *
299 299
      * @throws Alpha\Exception\ValidationException
300 300
      *
301
-     * @return Alpha\Util\Http\Response
301
+     * @return Response|null
302 302
      *
303 303
      * @since 1.0
304 304
      */
Please login to merge, or discard this patch.
Alpha/Controller/SequenceController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
      *
89 89
      * @param Alpha\Util\Http\Request $request
90 90
      *
91
-     * @return Alpha\Util\Http\Response
91
+     * @return Response
92 92
      *
93 93
      * @since 1.0
94 94
      */
Please login to merge, or discard this patch.