Passed
Push — master ( ce3534...9b1547 )
by Roeland
11:32 queued 43s
created
apps/admin_audit/lib/Actions/Console.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -26,21 +26,21 @@
 block discarded – undo
26 26
 
27 27
 
28 28
 class Console extends Action {
29
-	/**
30
-	 * @param $arguments
31
-	 */
32
-	public function runCommand(array $arguments) {
33
-		if (!isset($arguments[1]) || $arguments[1] === '_completion') {
34
-			// Don't log autocompletion
35
-			return;
36
-		}
29
+    /**
30
+     * @param $arguments
31
+     */
32
+    public function runCommand(array $arguments) {
33
+        if (!isset($arguments[1]) || $arguments[1] === '_completion') {
34
+            // Don't log autocompletion
35
+            return;
36
+        }
37 37
 
38
-		// Remove `./occ`
39
-		array_shift($arguments);
38
+        // Remove `./occ`
39
+        array_shift($arguments);
40 40
 
41
-		$this->log('Console command executed: %s',
42
-			['arguments' => implode(' ', $arguments)],
43
-			['arguments']
44
-		);
45
-	}
41
+        $this->log('Console command executed: %s',
42
+            ['arguments' => implode(' ', $arguments)],
43
+            ['arguments']
44
+        );
45
+    }
46 46
 }
Please login to merge, or discard this patch.