Passed
Push — master ( b288d2...d820ab )
by Robin
15:22 queued 14s
created
lib/public/Log/BeforeMessageLoggedEvent.php 1 patch
Indentation   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -31,51 +31,51 @@
 block discarded – undo
31 31
  * @since 28.0.0
32 32
  */
33 33
 class BeforeMessageLoggedEvent extends Event {
34
-	private int $level;
35
-	private string $app;
36
-	private $message;
34
+    private int $level;
35
+    private string $app;
36
+    private $message;
37 37
 
38
-	/**
39
-	 * @param string $app
40
-	 * @param int $level
41
-	 * @param array $message
42
-	 * @since 28.0.0
43
-	 */
44
-	public function __construct(string $app, int $level, array $message) {
45
-		$this->level = $level;
46
-		$this->app = $app;
47
-		$this->message = $message;
48
-	}
38
+    /**
39
+     * @param string $app
40
+     * @param int $level
41
+     * @param array $message
42
+     * @since 28.0.0
43
+     */
44
+    public function __construct(string $app, int $level, array $message) {
45
+        $this->level = $level;
46
+        $this->app = $app;
47
+        $this->message = $message;
48
+    }
49 49
 
50
-	/**
51
-	 * Get the level of the log item
52
-	 *
53
-	 * @return int
54
-	 * @since 28.0.0
55
-	 */
56
-	public function getLevel(): int {
57
-		return $this->level;
58
-	}
50
+    /**
51
+     * Get the level of the log item
52
+     *
53
+     * @return int
54
+     * @since 28.0.0
55
+     */
56
+    public function getLevel(): int {
57
+        return $this->level;
58
+    }
59 59
 
60 60
 
61
-	/**
62
-	 * Get the app context of the log item
63
-	 *
64
-	 * @return string
65
-	 * @since 28.0.0
66
-	 */
67
-	public function getApp(): string {
68
-		return $this->app;
69
-	}
61
+    /**
62
+     * Get the app context of the log item
63
+     *
64
+     * @return string
65
+     * @since 28.0.0
66
+     */
67
+    public function getApp(): string {
68
+        return $this->app;
69
+    }
70 70
 
71 71
 
72
-	/**
73
-	 * Get the message of the log item
74
-	 *
75
-	 * @return array
76
-	 * @since 28.0.0
77
-	 */
78
-	public function getMessage(): array {
79
-		return $this->message;
80
-	}
72
+    /**
73
+     * Get the message of the log item
74
+     *
75
+     * @return array
76
+     * @since 28.0.0
77
+     */
78
+    public function getMessage(): array {
79
+        return $this->message;
80
+    }
81 81
 }
Please login to merge, or discard this patch.