Passed
Push — master ( ac0dac...da7076 )
by Dark❶
02:17
created
event/main_listener.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,10 +62,10 @@
 block discarded – undo
62 62
 		user				$user,
63 63
 		language			$language,
64 64
 		template			$template
65
-	){
66
-		$this->mas_func		= $mas_func;
65
+	) {
66
+		$this->mas_func = $mas_func;
67 67
 		$this->auth			= $auth;
68
-		$this->config		= $config;
68
+		$this->config = $config;
69 69
 		$this->user			= $user;
70 70
 		$this->language		= $language;
71 71
 		$this->template		= $template;
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 		user				$user,
63 63
 		language			$language,
64 64
 		template			$template
65
-	){
65
+	) {
66 66
 		$this->mas_func		= $mas_func;
67 67
 		$this->auth			= $auth;
68 68
 		$this->config		= $config;
Please login to merge, or discard this patch.
core/memberavatarstatus.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
 		$phpbb_root_path
75 75
 	)
76 76
 	{
77
-		$this->auth				= $auth;
78
-		$this->config			= $config;
77
+		$this->auth = $auth;
78
+		$this->config = $config;
79 79
 		$this->language			= $language;
80 80
 		$this->phpbb_log		= $phpbb_log;
81
-		$this->phpbb_root_path	= $phpbb_root_path;
81
+		$this->phpbb_root_path = $phpbb_root_path;
82 82
 	}
83 83
 
84 84
 
@@ -381,8 +381,8 @@  discard block
 block discarded – undo
381 381
 		$start_wrap = '<div class="mas-wrap">';
382 382
 		$start_username = '<div class="mas-username">';
383 383
 		$end_tag = '</div>';
384
-		$avatar_test = ($this->config['allow_avatar'] && $this->config[$config_key . '_av']) ? true : false ;
385
-		$online_test = ($this->config['load_onlinetrack'] && $this->config[$config_key . '_ol']) ? true : false ;
384
+		$avatar_test = ($this->config['allow_avatar'] && $this->config[$config_key . '_av']) ? true : false;
385
+		$online_test = ($this->config['load_onlinetrack'] && $this->config[$config_key . '_ol']) ? true : false;
386 386
 		$avatar_wrap = ($avatar_test) ? $this->mas_get_avatar_img($avatar, $this->config[$config_key . '_av_sz']) : '';
387 387
 		$online_wrap = ($online_test) ? $this->mas_get_online_status_dot($online) : '';
388 388
 		return ($avatar_test || $online_test) ? ($start_wrap . $avatar_wrap . $start_username . $username . $end_tag . $online_wrap . $end_tag) : $username;
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@
 block discarded – undo
72 72
 		language			$language,
73 73
 		log					$phpbb_log,
74 74
 		$phpbb_root_path
75
-	)
76
-	{
75
+	) {
77 76
 		$this->auth				= $auth;
78 77
 		$this->config			= $config;
79 78
 		$this->language			= $language;
Please login to merge, or discard this patch.