@@ -189,6 +189,9 @@ discard block |
||
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 |
||
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 | // 문자열비교시 대소문자를 가리기때문에, 소문자로 해당값 입력 |
@@ -89,6 +89,9 @@ discard block |
||
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 |
||
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; |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | /** |
107 | 107 | * @param string $lock_unique_name |
108 | 108 | * |
109 | - * @return resource|null|bool |
|
109 | + * @return resource |
|
110 | 110 | * @throws Exception |
111 | 111 | */ |
112 | 112 | private function tryLock(string $lock_unique_name) |
@@ -126,6 +126,9 @@ discard block |
||
126 | 126 | return null; |
127 | 127 | } |
128 | 128 | |
129 | + /** |
|
130 | + * @param CronInterface $obj |
|
131 | + */ |
|
129 | 132 | private function getShortClassName($obj): string |
130 | 133 | { |
131 | 134 | $path = explode('\\', get_class($obj)); |