Passed
Push — master ( bb3ce1...337bb1 )
by Bjørn
02:35
created
src/Testers/ModuleLoadedTester.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -253,7 +253,7 @@
 block discarded – undo
253 253
                 ['0.html', '0'],
254 254
                 ['1.html', '1'],
255 255
             ],
256
-            'request' => '',        // empty - in order to request the index
256
+            'request' => '', // empty - in order to request the index
257 257
             'interpretation' => [
258 258
                 ['success', 'body', 'equals', '1'],
259 259
                 ['failure', 'body', 'equals', '0'],
Please login to merge, or discard this patch.
src/Testers/DirectoryIndexTester.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
                 ['index2.html', "1"]
34 34
             ],
35 35
             'request' => [
36
-                'url' => '',    // We request the index, that is why its empty
36
+                'url' => '', // We request the index, that is why its empty
37 37
                 'bypass-standard-error-handling' => ['404']
38 38
             ],
39 39
             'interpretation' => [
40 40
                 ['success', 'body', 'equals', '1'],
41 41
                 ['failure', 'body', 'equals', '0'],
42
-                ['failure', 'status-code', 'equals', '404'],  // "index.html" might not be set to index
42
+                ['failure', 'status-code', 'equals', '404'], // "index.html" might not be set to index
43 43
             ]
44 44
         ];
45 45
 
Please login to merge, or discard this patch.
src/HtaccessCapabilityTester.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@
 block discarded – undo
249 249
      *
250 250
      * @return bool|null   true=success, false=failure, null=inconclusive
251 251
      */
252
-     /*
252
+        /*
253 253
     public function callMethod($functionCall)
254 254
     {
255 255
         switch ($functionCall) {
Please login to merge, or discard this patch.
src/Testers/Helpers/ResponseInterpreter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
         if ($valType == 'string') {
143 143
             $match = self::evaluateConditionForString($operator, $valString, $arg1);
144 144
         } elseif ($valType == 'hash') {
145
-            $match =  self::evaluateConditionForHash($operator, $valHash, $arg1, $arg2);
145
+            $match = self::evaluateConditionForHash($operator, $valHash, $arg1, $arg2);
146 146
         }
147 147
         if ($match) {
148 148
             return $result;
Please login to merge, or discard this patch.