GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( 2d3f88...cfd273 )
by gyeong-won
07:52
created
classes/xml/xmlquery/tags/table/TableTag.class.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 		$this->name = $dbParser->parseTableName($table->attrs->name);
75 75
 
76 76
 		$this->alias = $table->attrs->alias;
77
-		if(!$this->alias)
77
+		if (!$this->alias)
78 78
 		{
79 79
 			$this->alias = $table->attrs->name;
80 80
 		}
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
 		$this->conditions = $table->conditions;
85 85
 
86
-		if($this->isJoinTable())
86
+		if ($this->isJoinTable())
87 87
 		{
88 88
 			$this->conditionsTag = new JoinConditionsTag($this->conditions);
89 89
 		}
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 	function isJoinTable()
93 93
 	{
94 94
 		$joinList = array('left join' => 1, 'left outer join' => 1, 'right join' => 1, 'right outer join' => 1);
95
-		if(isset($joinList[$this->join_type]) && count($this->conditions))
95
+		if (isset($joinList[$this->join_type]) && count($this->conditions))
96 96
 		{
97 97
 			return true;
98 98
 		}
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 	{
120 120
 		$dbParser = DB::getParser();
121 121
 
122
-		if($this->isJoinTable())
122
+		if ($this->isJoinTable())
123 123
 		{
124 124
 			return sprintf('new JoinTable(\'%s\', \'%s\', "%s", %s)'
125 125
 							, $dbParser->escape($this->name)
@@ -128,12 +128,12 @@  discard block
 block discarded – undo
128 128
 		}
129 129
 		return sprintf('new Table(\'%s\'%s)'
130 130
 						, $dbParser->escape($this->name)
131
-						, $this->alias ? ', \'' . $dbParser->escape($this->alias) . '\'' : '');
131
+						, $this->alias ? ', \''.$dbParser->escape($this->alias).'\'' : '');
132 132
 	}
133 133
 
134 134
 	function getArguments()
135 135
 	{
136
-		if(!isset($this->conditionsTag))
136
+		if (!isset($this->conditionsTag))
137 137
 		{
138 138
 			return array();
139 139
 		}
Please login to merge, or discard this patch.
classes/xml/xmlquery/tags/condition/ConditionGroupTag.class.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@  discard block
 block discarded – undo
33 33
 	{
34 34
 		$this->pipe = $pipe;
35 35
 
36
-		if(!is_array($conditions))
36
+		if (!is_array($conditions))
37 37
 		{
38 38
 			$conditions = array($conditions);
39 39
 		}
40 40
 
41
-		foreach($conditions as $condition)
41
+		foreach ($conditions as $condition)
42 42
 		{
43 43
 			//if($condition->node_name === 'query') $this->conditions[] = new QueryTag($condition, true);
44 44
 			$this->conditions[] = new ConditionTag($condition);
@@ -56,21 +56,21 @@  discard block
 block discarded – undo
56 56
 	 */
57 57
 	function getConditionGroupString()
58 58
 	{
59
-		$conditions_string = 'array(' . PHP_EOL;
60
-		foreach($this->conditions as $condition)
59
+		$conditions_string = 'array('.PHP_EOL;
60
+		foreach ($this->conditions as $condition)
61 61
 		{
62
-			$conditions_string .= $condition->getConditionString() . PHP_EOL . ',';
62
+			$conditions_string .= $condition->getConditionString().PHP_EOL.',';
63 63
 		}
64 64
 		$conditions_string = substr($conditions_string, 0, -2); //remove ','
65 65
 		$conditions_string .= ')';
66 66
 
67
-		return sprintf("new ConditionGroup(%s%s)", $conditions_string, $this->pipe ? ',\'' . $this->pipe . '\'' : '');
67
+		return sprintf("new ConditionGroup(%s%s)", $conditions_string, $this->pipe ? ',\''.$this->pipe.'\'' : '');
68 68
 	}
69 69
 
70 70
 	function getArguments()
71 71
 	{
72 72
 		$arguments = array();
73
-		foreach($this->conditions as $condition)
73
+		foreach ($this->conditions as $condition)
74 74
 		{
75 75
 			$arguments = array_merge($arguments, $condition->getArguments());
76 76
 		}
Please login to merge, or discard this patch.
classes/xml/xmlquery/tags/condition/ConditionsTag.class.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -25,42 +25,42 @@  discard block
 block discarded – undo
25 25
 	function ConditionsTag($xml_conditions)
26 26
 	{
27 27
 		$this->condition_groups = array();
28
-		if(!$xml_conditions)
28
+		if (!$xml_conditions)
29 29
 		{
30 30
 			return;
31 31
 		}
32 32
 
33 33
 		$xml_condition_list = array();
34
-		if($xml_conditions->condition)
34
+		if ($xml_conditions->condition)
35 35
 		{
36 36
 			$xml_condition_list = $xml_conditions->condition;
37 37
 		}
38 38
 
39
-		if($xml_conditions->query)
39
+		if ($xml_conditions->query)
40 40
 		{
41
-			if(!is_array($xml_condition_list))
41
+			if (!is_array($xml_condition_list))
42 42
 			{
43 43
 				$xml_condition_list = array($xml_condition_list);
44 44
 			}
45
-			if(!is_array($xml_conditions->query))
45
+			if (!is_array($xml_conditions->query))
46 46
 			{
47 47
 				$xml_conditions->query = array($xml_conditions->query);
48 48
 			}
49 49
 			$xml_condition_list = array_merge($xml_condition_list, $xml_conditions->query);
50 50
 		}
51
-		if($xml_condition_list)
51
+		if ($xml_condition_list)
52 52
 		{
53 53
 			$this->condition_groups[] = new ConditionGroupTag($xml_condition_list);
54 54
 		}
55 55
 
56 56
 		$xml_groups = $xml_conditions->group;
57
-		if($xml_groups)
57
+		if ($xml_groups)
58 58
 		{
59
-			if(!is_array($xml_groups))
59
+			if (!is_array($xml_groups))
60 60
 			{
61 61
 				$xml_groups = array($xml_groups);
62 62
 			}
63
-			foreach($xml_groups as $group)
63
+			foreach ($xml_groups as $group)
64 64
 			{
65 65
 				$this->condition_groups[] = new ConditionGroupTag($group->condition, $group->attrs->pipe);
66 66
 			}
@@ -73,10 +73,10 @@  discard block
 block discarded – undo
73 73
 	 */
74 74
 	function toString()
75 75
 	{
76
-		$output_conditions = 'array(' . PHP_EOL;
77
-		foreach($this->condition_groups as $condition)
76
+		$output_conditions = 'array('.PHP_EOL;
77
+		foreach ($this->condition_groups as $condition)
78 78
 		{
79
-			$output_conditions .= $condition->getConditionGroupString() . PHP_EOL . ',';
79
+			$output_conditions .= $condition->getConditionGroupString().PHP_EOL.',';
80 80
 		}
81 81
 		$output_conditions = substr($output_conditions, 0, -1);
82 82
 		$output_conditions .= ')';
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	function getArguments()
87 87
 	{
88 88
 		$arguments = array();
89
-		foreach($this->condition_groups as $condition)
89
+		foreach ($this->condition_groups as $condition)
90 90
 		{
91 91
 			$arguments = array_merge($arguments, $condition->getArguments());
92 92
 		}
Please login to merge, or discard this patch.
classes/xml/xmlquery/tags/group/GroupsTag.class.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -26,19 +26,19 @@  discard block
 block discarded – undo
26 26
 	{
27 27
 		$this->groups = array();
28 28
 
29
-		if($xml_groups)
29
+		if ($xml_groups)
30 30
 		{
31
-			if(!is_array($xml_groups))
31
+			if (!is_array($xml_groups))
32 32
 			{
33 33
 				$xml_groups = array($xml_groups);
34 34
 			}
35 35
 
36 36
 			$dbParser = &DB::getParser();
37
-			for($i = 0; $i < count($xml_groups); $i++)
37
+			for ($i = 0; $i < count($xml_groups); $i++)
38 38
 			{
39 39
 				$group = $xml_groups[$i];
40 40
 				$column = trim($group->attrs->column);
41
-				if(!$column)
41
+				if (!$column)
42 42
 				{
43 43
 					continue;
44 44
 				}
@@ -51,10 +51,10 @@  discard block
 block discarded – undo
51 51
 
52 52
 	function toString()
53 53
 	{
54
-		$output = 'array(' . PHP_EOL;
55
-		foreach($this->groups as $group)
54
+		$output = 'array('.PHP_EOL;
55
+		foreach ($this->groups as $group)
56 56
 		{
57
-			$output .= "'" . $group . "' ,";
57
+			$output .= "'".$group."' ,";
58 58
 		}
59 59
 		$output = substr($output, 0, -1);
60 60
 		$output .= ')';
Please login to merge, or discard this patch.
classes/xml/xmlquery/queryargument/SortQueryArgument.class.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
16 16
 	 */
17 17
 	function toString()
18 18
 	{
19
-		$arg = sprintf("\n" . '${\'%s_argument\'} = new SortArgument(\'%s\', %s);' . "\n"
19
+		$arg = sprintf("\n".'${\'%s_argument\'} = new SortArgument(\'%s\', %s);'."\n"
20 20
 				, $this->argument_name
21 21
 				, $this->argument_name
22
-				, '$args->' . $this->variable_name);
22
+				, '$args->'.$this->variable_name);
23 23
 		$arg .= $this->argument_validator->toString();
24 24
 
25
-		$arg .= sprintf('if(!${\'%s_argument\'}->isValid()) return ${\'%s_argument\'}->getErrorMessage();' . "\n"
25
+		$arg .= sprintf('if(!${\'%s_argument\'}->isValid()) return ${\'%s_argument\'}->getErrorMessage();'."\n"
26 26
 				, $this->argument_name
27 27
 				, $this->argument_name
28 28
 		);
Please login to merge, or discard this patch.
classes/xml/xmlquery/queryargument/DefaultValue.class.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 	{
71 71
 		return $this->_is_string;
72 72
 		$str_pos = strpos($this->value, '(');
73
-		if($str_pos === false)
73
+		if ($str_pos === false)
74 74
 		{
75 75
 			return TRUE;
76 76
 		}
@@ -99,31 +99,31 @@  discard block
 block discarded – undo
99 99
 
100 100
 	function _setValue()
101 101
 	{
102
-		if(!isset($this->value))
102
+		if (!isset($this->value))
103 103
 		{
104 104
 			return;
105 105
 		}
106 106
 
107 107
 		// If value contains comma separated values and does not contain paranthesis
108 108
 		//  -> default value is an array
109
-		if(strpos($this->value, ',') !== FALSE && strpos($this->value, '(') === FALSE)
109
+		if (strpos($this->value, ',') !== FALSE && strpos($this->value, '(') === FALSE)
110 110
 		{
111 111
 			return sprintf('array(%s)', $this->value);
112 112
 		}
113 113
 
114 114
 		$str_pos = strpos($this->value, '(');
115 115
 		// // TODO Replace this with parseExpression
116
-		if($str_pos === FALSE)
116
+		if ($str_pos === FALSE)
117 117
 		{
118 118
 			$this->_is_string = TRUE;
119
-			return '\'' . $this->value . '\'';
119
+			return '\''.$this->value.'\'';
120 120
 		}
121 121
 		//if($str_pos===false) return $this->value;
122 122
 
123 123
 		$func_name = substr($this->value, 0, $str_pos);
124 124
 		$args = substr($this->value, $str_pos + 1, -1);
125 125
 
126
-		switch($func_name)
126
+		switch ($func_name)
127 127
 		{
128 128
 			case 'ipaddress' :
129 129
 				$val = '$_SERVER[\'REMOTE_ADDR\']';
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 				$val = sprintf('%d', $args);
160 160
 				break;
161 161
 			default :
162
-				$val = '\'' . $this->value . '\'';
162
+				$val = '\''.$this->value.'\'';
163 163
 			//$val = $this->value;
164 164
 		}
165 165
 
Please login to merge, or discard this patch.
addons/point_level_icon/point_level_icon.lib.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -7,24 +7,24 @@  discard block
 block discarded – undo
7 7
 function pointLevelIconTrans($matches)
8 8
 {
9 9
 	$member_srl = $matches[3];
10
-	if($member_srl < 1)
10
+	if ($member_srl < 1)
11 11
 	{
12 12
 		return $matches[0];
13 13
 	}
14 14
 
15
-	$orig_text = preg_replace('/' . preg_quote($matches[5], '/') . '<\/' . $matches[6] . '>$/', '', $matches[0]);
15
+	$orig_text = preg_replace('/'.preg_quote($matches[5], '/').'<\/'.$matches[6].'>$/', '', $matches[0]);
16 16
 
17 17
 	// Check Group Image Mark
18 18
 	$oMemberModel = getModel('member');
19
-	if($oMemberModel->getGroupImageMark($member_srl))
19
+	if ($oMemberModel->getGroupImageMark($member_srl))
20 20
 	{
21
-		return $orig_text . $matches[5] . '</' . $matches[6] . '>';
21
+		return $orig_text.$matches[5].'</'.$matches[6].'>';
22 22
 	}
23 23
 
24
-	if(!isset($GLOBALS['_pointLevelIcon'][$member_srl]))
24
+	if (!isset($GLOBALS['_pointLevelIcon'][$member_srl]))
25 25
 	{
26 26
 		// Get point configuration
27
-		if(!$GLOBALS['_pointConfig'])
27
+		if (!$GLOBALS['_pointConfig'])
28 28
 		{
29 29
 			$oModuleModel = getModel('module');
30 30
 			$GLOBALS['_pointConfig'] = $oModuleModel->getModuleConfig('point');
@@ -32,14 +32,14 @@  discard block
 block discarded – undo
32 32
 		$config = $GLOBALS['_pointConfig'];
33 33
 
34 34
 		// Get point model
35
-		if(!$GLOBALS['_pointModel'])
35
+		if (!$GLOBALS['_pointModel'])
36 36
 		{
37 37
 			$GLOBALS['_pointModel'] = getModel('point');
38 38
 		}
39 39
 		$oPointModel = &$GLOBALS['_pointModel'];
40 40
 
41 41
 		// Get points
42
-		if(!$oPointModel->isExistsPoint($member_srl))
42
+		if (!$oPointModel->isExistsPoint($member_srl))
43 43
 		{
44 44
 			return $matches[0];
45 45
 		}
@@ -55,25 +55,25 @@  discard block
 block discarded – undo
55 55
 
56 56
 		// Get per to go to the next level if not a top level
57 57
 		$per = NULL;
58
-		if($level < $config->max_level)
58
+		if ($level < $config->max_level)
59 59
 		{
60 60
 			$next_point = $config->level_step[$level + 1];
61 61
 			$present_point = $config->level_step[$level];
62
-			if($next_point > 0)
62
+			if ($next_point > 0)
63 63
 			{
64 64
 				$per = (int) (($point - $present_point) / ($next_point - $present_point) * 100);
65
-				$per = $per . '%';
65
+				$per = $per.'%';
66 66
 			}
67 67
 		}
68 68
 
69
-		$title = sprintf('%s:%s%s%s, %s:%s/%s', Context::getLang('point'), $point, $config->point_name, $per ? ' (' . $per . ')' : '', Context::getLang('level'), $level, $config->max_level);
69
+		$title = sprintf('%s:%s%s%s, %s:%s/%s', Context::getLang('point'), $point, $config->point_name, $per ? ' ('.$per.')' : '', Context::getLang('level'), $level, $config->max_level);
70 70
 		$alt = sprintf('[%s:%s]', Context::getLang('level'), $level);
71 71
 
72 72
 		$GLOBALS['_pointLevelIcon'][$member_srl] = sprintf('<img src="%s" alt="%s" title="%s" class="xe_point_level_icon" style="vertical-align:middle;margin-right:3px;" />', $level_icon, $alt, $title);
73 73
 	}
74 74
 	$text = $GLOBALS['_pointLevelIcon'][$member_srl];
75 75
 
76
-	return $orig_text . $text . $matches[5] . '</' . $matches[6] . '>';
76
+	return $orig_text.$text.$matches[5].'</'.$matches[6].'>';
77 77
 }
78 78
 
79 79
 /* End of file point_level_icon.lib.php */
Please login to merge, or discard this patch.
modules/communication/communication.admin.view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 		Context::set('group_list', $group_list);
64 64
 
65 65
 		// specify a template
66
-		$this->setTemplatePath($this->module_path . 'tpl');
66
+		$this->setTemplatePath($this->module_path.'tpl');
67 67
 		$this->setTemplateFile('index');
68 68
 	}
69 69
 
Please login to merge, or discard this patch.
modules/addon/addon.controller.php 2 patches
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	function getCacheFilePath($type = "pc")
27 27
 	{
28 28
 		static $addon_file;
29
-		if(isset($addon_file))
29
+		if (isset($addon_file))
30 30
 		{
31 31
 			return $addon_file;
32 32
 		}
@@ -34,10 +34,10 @@  discard block
 block discarded – undo
34 34
 		$site_module_info = Context::get('site_module_info');
35 35
 		$site_srl = $site_module_info->site_srl;
36 36
 
37
-		$addon_path = _XE_PATH_ . 'files/cache/addons/';
38
-		$addon_file = $addon_path . $site_srl . $type . '.acivated_addons.cache.php';
37
+		$addon_path = _XE_PATH_.'files/cache/addons/';
38
+		$addon_file = $addon_path.$site_srl.$type.'.acivated_addons.cache.php';
39 39
 
40
-		if($this->addon_file_called)
40
+		if ($this->addon_file_called)
41 41
 		{
42 42
 			return $addon_file;
43 43
 		}
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 		FileHandler::makeDir($addon_path);
48 48
 
49
-		if(!file_exists($addon_file))
49
+		if (!file_exists($addon_file))
50 50
 		{
51 51
 			$this->makeCacheFile($site_srl, $type);
52 52
 		}
@@ -82,30 +82,30 @@  discard block
 block discarded – undo
82 82
 		$buff = array('<?php if(!defined("__XE__")) exit();', '$_m = Context::get(\'mid\');');
83 83
 		$oAddonModel = getAdminModel('addon');
84 84
 		$addon_list = $oAddonModel->getInsertedAddons($site_srl, $gtype);
85
-		foreach($addon_list as $addon => $val)
85
+		foreach ($addon_list as $addon => $val)
86 86
 		{
87
-			if($val->addon == "smartphone"
87
+			if ($val->addon == "smartphone"
88 88
 				|| ($type == "pc" && $val->is_used != 'Y') 
89 89
 				|| ($type == "mobile" && $val->is_used_m != 'Y') 
90 90
 				|| ($gtype == 'global' && $val->is_fixed != 'Y')
91
-				|| !is_dir(_XE_PATH_ . 'addons/' . $addon))
91
+				|| !is_dir(_XE_PATH_.'addons/'.$addon))
92 92
 			{
93 93
 				continue;
94 94
 			}
95 95
 
96 96
 			$extra_vars = unserialize($val->extra_vars);
97 97
 			$mid_list = $extra_vars->mid_list;
98
-			if(!is_array($mid_list) || count($mid_list) < 1)
98
+			if (!is_array($mid_list) || count($mid_list) < 1)
99 99
 			{
100 100
 				$mid_list = NULL;
101 101
 			}
102 102
 
103 103
 			$buff[] = '$before_time = microtime(true);';
104
-			$buff[] = '$rm = \'' . $extra_vars->xe_run_method . "';";
104
+			$buff[] = '$rm = \''.$extra_vars->xe_run_method."';";
105 105
 			$buff[] = '$ml = array(';
106
-			if($mid_list)
106
+			if ($mid_list)
107 107
 			{
108
-				foreach($mid_list as $mid)
108
+				foreach ($mid_list as $mid)
109 109
 				{
110 110
 					$buff[] = "'$mid' => 1,";
111 111
 				}
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 			$buff[] = ');';
114 114
 			$buff[] = sprintf('$addon_file = \'./addons/%s/%s.addon.php\';', $addon, $addon);
115 115
 
116
-			if($val->extra_vars)
116
+			if ($val->extra_vars)
117 117
 			{
118 118
 				unset($extra_vars);
119 119
 				$extra_vars = base64_encode($val->extra_vars);
@@ -131,13 +131,13 @@  discard block
 block discarded – undo
131 131
 			$buff[] = '$after_time = microtime(true);';
132 132
 			$buff[] = '$addon_time_log = new stdClass();';
133 133
 			$buff[] = '$addon_time_log->caller = $called_position;';
134
-			$buff[] = '$addon_time_log->called = "' . $addon . '";';
135
-			$buff[] = '$addon_time_log->called_extension = "' . $addon . '";';
134
+			$buff[] = '$addon_time_log->called = "'.$addon.'";';
135
+			$buff[] = '$addon_time_log->called_extension = "'.$addon.'";';
136 136
 			$buff[] = 'writeSlowlog("addon",$after_time-$before_time,$addon_time_log);';
137 137
 		}
138
-		$addon_path = _XE_PATH_ . 'files/cache/addons/';
138
+		$addon_path = _XE_PATH_.'files/cache/addons/';
139 139
 		FileHandler::makeDir($addon_path);
140
-		$addon_file = $addon_path . ($gtype == 'site' ? $site_srl : '') . $type . '.acivated_addons.cache.php';
140
+		$addon_file = $addon_path.($gtype == 'site' ? $site_srl : '').$type.'.acivated_addons.cache.php';
141 141
 		FileHandler::writeFile($addon_file, join(PHP_EOL, $buff));
142 142
 	}
143 143
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	 */
153 153
 	function doSetup($addon, $extra_vars, $site_srl = 0, $gtype = 'site')
154 154
 	{
155
-		if(!is_array($extra_vars->mid_list))
155
+		if (!is_array($extra_vars->mid_list))
156 156
 		{
157 157
 			unset($extra_vars->mid_list);
158 158
 		}
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 		$args = new stdClass();
161 161
 		$args->addon = $addon;
162 162
 		$args->extra_vars = serialize($extra_vars);
163
-		if($gtype == 'global')
163
+		if ($gtype == 'global')
164 164
 		{
165 165
 			return executeQuery('addon.updateAddon', $args);
166 166
 		}
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
 	 */
177 177
 	function removeAddonConfig($site_srl)
178 178
 	{
179
-		$addon_path = _XE_PATH_ . 'files/cache/addons/';
180
-		$addon_file = $addon_path . $site_srl . '.acivated_addons.cache.php';
181
-		if(file_exists($addon_file))
179
+		$addon_path = _XE_PATH_.'files/cache/addons/';
180
+		$addon_file = $addon_path.$site_srl.'.acivated_addons.cache.php';
181
+		if (file_exists($addon_file))
182 182
 		{
183 183
 			FileHandler::removeFile($addon_file);
184 184
 		}
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
 	 * Save setup
146 146
 	 *
147 147
 	 * @param string $addon Addon name
148
-	 * @param object $extra_vars Extra variables
148
+	 * @param BaseObject $extra_vars Extra variables
149 149
 	 * @param int $site_srl Site srl
150 150
 	 * @param string $gtype site or global
151 151
 	 * @return BaseObject
Please login to merge, or discard this patch.