Passed
Push — master ( 5a5c41...fade3b )
by Cody
04:50 queued 10s
created
update.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -165,18 +165,18 @@  discard block
 block discarded – undo
165 165
 	Debug::set_enabled(true);
166 166
 
167 167
 	if (isset($options["log-level"])) {
168
-	    Debug::set_loglevel((int)$options["log-level"]);
169
-    }
168
+		Debug::set_loglevel((int)$options["log-level"]);
169
+	}
170 170
 
171 171
 	if (isset($options["log"])) {
172 172
 		Debug::set_quiet(isset($options['quiet']));
173 173
 		Debug::set_logfile($options["log"]);
174
-        Debug::log("Logging to " . $options["log"]);
175
-    } else {
176
-	    if (isset($options['quiet'])) {
174
+		Debug::log("Logging to " . $options["log"]);
175
+	} else {
176
+		if (isset($options['quiet'])) {
177 177
 			Debug::set_loglevel(Debug::$LOG_DISABLED);
178
-        }
179
-    }
178
+		}
179
+	}
180 180
 
181 181
 	if (!isset($options["daemon"])) {
182 182
 		$lock_filename = "update.lock";
@@ -229,8 +229,8 @@  discard block
 block discarded – undo
229 229
 	if (isset($options["daemon"])) {
230 230
 		while (true) {
231 231
 			$quiet = (isset($options["quiet"])) ? "--quiet" : "";
232
-            $log = isset($options['log']) ? '--log '.$options['log'] : '';
233
-            $log_level = isset($options['log-level']) ? '--log-level '.$options['log-level'] : '';
232
+			$log = isset($options['log']) ? '--log '.$options['log'] : '';
233
+			$log_level = isset($options['log-level']) ? '--log-level '.$options['log-level'] : '';
234 234
 
235 235
 			passthru(PHP_EXECUTABLE . " " . $argv[0] ." --daemon-loop $quiet $log $log_level");
236 236
 
Please login to merge, or discard this patch.
prefs.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -153,9 +153,9 @@
 block discarded – undo
153 153
                 title="<i class='material-icons'>info_outline</i> <?php echo __('System') ?>"></div>
154 154
         <?php } ?>
155 155
         <?php
156
-            PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS,
157
-                "hook_prefs_tabs", false);
158
-        ?>
156
+			PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TABS,
157
+				"hook_prefs_tabs", false);
158
+		?>
159 159
         </div>
160 160
     <div id="footer" dojoType="dijit.layout.ContentPane" region="bottom">
161 161
         <a class="text-muted" target="_blank" href="http://tt-rss.org/">
Please login to merge, or discard this patch.
af_readability/vendor/andreskrey/Readability/Nodes/DOM/DOMElement.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 class DOMElement extends \DOMElement
8 8
 {
9
-    use NodeTrait;
9
+	use NodeTrait;
10 10
 }
Please login to merge, or discard this patch.
af_readability/vendor/andreskrey/Readability/Nodes/DOM/DOMCdataSection.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 class DOMCdataSection extends \DOMCdataSection
8 8
 {
9
-    use NodeTrait;
9
+	use NodeTrait;
10 10
 }
Please login to merge, or discard this patch.
af_readability/vendor/andreskrey/Readability/Nodes/DOM/DOMDocumentType.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 class DOMDocumentType extends \DOMDocumentType
8 8
 {
9
-    use NodeTrait;
9
+	use NodeTrait;
10 10
 }
Please login to merge, or discard this patch.
vendor/andreskrey/Readability/Nodes/DOM/DOMProcessingInstruction.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 class DOMProcessingInstruction extends \DOMProcessingInstruction
8 8
 {
9
-    use NodeTrait;
9
+	use NodeTrait;
10 10
 }
Please login to merge, or discard this patch.
af_readability/vendor/andreskrey/Readability/Nodes/DOM/DOMCharacterData.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 class DOMCharacterData extends \DOMCharacterData
8 8
 {
9
-    use NodeTrait;
9
+	use NodeTrait;
10 10
 }
Please login to merge, or discard this patch.
plugins/af_readability/vendor/andreskrey/Readability/Nodes/DOM/DOMNode.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
  */
11 11
 class DOMNode extends \DOMNode
12 12
 {
13
-    use NodeTrait;
13
+	use NodeTrait;
14 14
 }
Please login to merge, or discard this patch.
plugins/af_readability/vendor/andreskrey/Readability/Nodes/DOM/DOMAttr.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 class DOMAttr extends \DOMAttr
8 8
 {
9
-    use NodeTrait;
9
+	use NodeTrait;
10 10
 }
Please login to merge, or discard this patch.