Passed
Branch master (2e40b8)
by Hyunwoo
02:25
created
lib/HtmlUtils.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -189,6 +189,9 @@  discard block
 block discarded – undo
189 189
 		return $string;
190 190
 	}
191 191
 
192
+	/**
193
+	 * @param string $string
194
+	 */
192 195
 	private static function extractTagAttributes($string)
193 196
 	{
194 197
 		$html_attributes = array();
@@ -202,6 +205,9 @@  discard block
 block discarded – undo
202 205
 		return $html_attributes;
203 206
 	}
204 207
 
208
+	/**
209
+	 * @param string $tag_name
210
+	 */
205 211
 	private static function filterAllowableTagAttributes($tag_name, $html_attributes)
206 212
 	{
207 213
 		// 문자열비교시 대소문자를 가리기때문에, 소문자로 해당값 입력
Please login to merge, or discard this patch.
lib/StringUtils.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@  discard block
 block discarded – undo
89 89
 		return $str;
90 90
 	}
91 91
 
92
+	/**
93
+	 * @return string
94
+	 */
92 95
 	private static function normalizeSpace($str, $is_single_line = false)
93 96
 	{
94 97
 		if ($is_single_line) {
@@ -170,6 +173,10 @@  discard block
 block discarded – undo
170 173
 	 * @param $obj
171 174
 	 * @param $result
172 175
 	 */
176
+
177
+	/**
178
+	 * @param \SimpleXMLElement $obj
179
+	 */
173 180
 	private static function normalizeSimpleXML($obj, &$result)
174 181
 	{
175 182
 		$data = $obj;
Please login to merge, or discard this patch.