Passed
Push — master ( 68812c...74b1ff )
by Deel
03:28
created
view/anax/v2/blog-toc-next-prev-page/default.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,9 +37,12 @@
 block discarded – undo
37 37
     <div class="next">
38 38
         <?php if ($nextPageUrl) : ?>
39 39
         <a href="<?= url($nextPageUrl) ?>"><?= $nextStr ?></a>
40
-        <?php else : ?>
40
+        <?php else {
41
+    : ?>
41 42
         &nbsp;
42
-        <?php endif; ?>
43
+        <?php endif;
44
+}
45
+?>
43 46
     </div>
44 47
 
45 48
     <div class="center">
Please login to merge, or discard this patch.
src/Controller/DevelopmentController.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
      * @param array $args as a variadic to catch all arguments.
22 22
      *
23 23
      * @throws Anax\Route\Exception\NotFoundException when route is not found.
24
-
25 24
      * @return object as the response.
26 25
      *
27 26
      * @SuppressWarnings(PHPMD.UnusedFormalParameter)
Please login to merge, or discard this patch.
src/Controller/ErrorHandlerController.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
      * @param string $message with details.
23 23
      *
24 24
      * @throws Anax\Route\Exception\NotFoundException
25
-
26 25
      * @return object as the response.
27 26
      */
28 27
     public function catchAll(...$args) : object
Please login to merge, or discard this patch.
src/Ip/IpController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $check = new IPChecker();
60 60
 
61 61
         if ($doVerify) {
62
-             $result = $check->checkIpv($address);
62
+                $result = $check->checkIpv($address);
63 63
 
64 64
             $session->set("res", $result);
65 65
             $session->set("ip", $address);
Please login to merge, or discard this patch.