Completed
Pull Request — master (#29)
by Yoshiaki
02:19
created
wrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 require_once (__DIR__ . '/vendor/autoload.php');
4 4
 require_once (__DIR__ . '/Checker.php');
5 5
 
6
-if ($argc < 2 ){
6
+if ($argc < 2) {
7 7
     echo "Use ex. $ php wrapper.php https://bootjp.me/ \n";
8 8
     exit;
9 9
 }
Please login to merge, or discard this patch.
Checker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
             '30x' => [301, 302, 308]
186 186
         ];
187 187
 
188
-        foreach($isErrorPageCode as $errorType => $statuses) {
188
+        foreach ($isErrorPageCode as $errorType => $statuses) {
189 189
             if (in_array($statusCode, $statuses)) {
190 190
                 return [
191 191
                     'result' => false,
Please login to merge, or discard this patch.