Failed Conditions
Pull Request — 4.0 (#4528)
by Kentaro
06:23
created
src/Eccube/Security/Core/Encoder/PasswordEncoder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,6 +121,6 @@
 block discarded – undo
121 121
 
122 122
     public function needsRehash(string $encoded): bool
123 123
     {
124
-         return true;
124
+            return true;
125 125
     }
126 126
 }
Please login to merge, or discard this patch.
src/Eccube/Twig/Extension/IgnoreRoutingNotFoundExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             // FIXME log関数でエラーになるので, 修正されたらコメントアウトをはずす
50 50
             // log_warning($e->getMessage(), ['exception' => $e]);
51 51
 
52
-            return $this->routingExtension->getPath('homepage') . '404?bind=' . $name;
52
+            return $this->routingExtension->getPath('homepage').'404?bind='.$name;
53 53
         }
54 54
     }
55 55
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
             // FIXME log関数でエラーになるので, 修正されたらコメントアウトをはずす
66 66
             // log_warning($e->getMessage(), ['exception' => $e]);
67 67
 
68
-            return $this->routingExtension->getUrl('homepage', $parameters, $schemeRelative) . '404?bind=' . $name;
68
+            return $this->routingExtension->getUrl('homepage', $parameters, $schemeRelative).'404?bind='.$name;
69 69
         }
70 70
     }
71 71
 
Please login to merge, or discard this patch.