Complex classes like StringHelper often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use StringHelper, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 22 | class StringHelper extends BaseStringHelper |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * TypeCast a string to its specific types. |
||
| 26 | * |
||
| 27 | * Arrays will passed to to the {{luya\helpers\ArrayHelper::typeCast()}} class. |
||
| 28 | * |
||
| 29 | * @param mixed $string The input string to type cast. Arrays will be passted to {{luya\helpers\ArrayHelper::typeCast()}}. |
||
| 30 | * @return mixed The new type casted value, if the input is an array the output is the typecasted array. |
||
| 31 | */ |
||
| 32 | public static function typeCast($string) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * String Wildcard Check. |
||
| 45 | * |
||
| 46 | * Checks whether a strings starts with the wildcard symbole and compares the string before the wild card symbol * |
||
| 47 | * with the string provided, if there is NO wildcard symbold it always return false. |
||
| 48 | * |
||
| 49 | * |
||
| 50 | * @param string $string The string which should be checked with $with comperator |
||
| 51 | * @param string $with The with string which must end with the wildcard symbol * e.g. `foo*` would match string `foobar`. |
||
| 52 | * @param boolean $caseSensitive Whether to compare the starts with string as case sensitive or not, defaults to true. |
||
| 53 | * @return boolean Whether the string starts with the wildcard marked string or not, if no wildcard symbol is contained. |
||
| 54 | * in the $with it always returns false. |
||
| 55 | */ |
||
| 56 | public static function startsWithWildcard($string, $with, $caseSensitive = true) |
||
| 64 | |||
| 65 | |||
| 66 | |||
| 67 | /** |
||
| 68 | * See if filter conditions match the given value. |
||
| 69 | * |
||
| 70 | * Example filter conditions: |
||
| 71 | * |
||
| 72 | * + `cms_*` matches everything starting with "cms_". |
||
| 73 | * + `cms_*,admin_*` matches booth cms_* and admin_* tables. |
||
| 74 | * + `!cms_*` matches all not start with "cms_" |
||
| 75 | * + `!cms_*,!admin_*` matches all not starting with "cms_" and not starting with "admin_" |
||
| 76 | * + `cms_*,!admin_*` matches all start with "cms_" but not start with "admin_" |
||
| 77 | * |
||
| 78 | * Only first match is relevant: |
||
| 79 | * |
||
| 80 | * + "cms_*,!admin_*,admin_*" include all cms_* tables but exclude all admin_* tables (last match has no effect) |
||
| 81 | * + "cms_*,admin_*,!admin_*" include all cms_* and admin_* tables (last match has no effect) |
||
| 82 | * |
||
| 83 | * Example using condition string: |
||
| 84 | * |
||
| 85 | * ```php |
||
| 86 | * filterMatch('hello', 'he*'); // true |
||
| 87 | * filterMatch('hello', 'ho,he*'); // true |
||
| 88 | * filterMatch('hello', ['ho', 'he*']); // true |
||
| 89 | * ``` |
||
| 90 | * |
||
| 91 | * @param $value The value on which the filter conditions should be applied on. |
||
| 92 | * @param array|string $filters An array of filter conditions, if a string is given he will be exploded by commas. |
||
|
|
|||
| 93 | * @param boolean $caseSensitive Whether to match value even when lower/upper case is not correct/same. |
||
| 94 | * @return bool Returns true if one of the given filter conditions matches. |
||
| 95 | * @since 1.3.0 |
||
| 96 | */ |
||
| 97 | public static function filterMatch($value, $conditions, $caseSensitive = true) |
||
| 121 | |||
| 122 | /** |
||
| 123 | * TypeCast a numeric value to float or integer. |
||
| 124 | * |
||
| 125 | * If the given value is not a numeric or float value it will be returned as it is. In order to find out whether its float |
||
| 126 | * or not use {{luya\helpers\StringHelper::isFloat()}}. |
||
| 127 | * |
||
| 128 | * @param mixed $value The given value to parse. |
||
| 129 | * @return mixed Returns the original value if not numeric or integer, float casted value. |
||
| 130 | */ |
||
| 131 | public static function typeCastNumeric($value) |
||
| 143 | |||
| 144 | /** |
||
| 145 | * Checks whether a string is a float value. |
||
| 146 | * |
||
| 147 | * Compared to `is_float` function of php, it only ensures whether the input variable is type float. |
||
| 148 | * |
||
| 149 | * @param mixed $value The value to check whether its float or not. |
||
| 150 | * @return boolean Whether its a float value or not. |
||
| 151 | */ |
||
| 152 | public static function isFloat($value) |
||
| 160 | |||
| 161 | /** |
||
| 162 | * Replace only the first occurance found inside the string. |
||
| 163 | * |
||
| 164 | * The replace first method is *case sensitive*. |
||
| 165 | * |
||
| 166 | * ```php |
||
| 167 | * StringHelper::replaceFirst('abc', '123', 'abc abc abc'); // returns "123 abc abc" |
||
| 168 | * ``` |
||
| 169 | * |
||
| 170 | * @param string $search Search string to look for. |
||
| 171 | * @param string $replace Replacement value for the first found occurrence. |
||
| 172 | * @param string $subject The string you want to look up to replace the first element. |
||
| 173 | * @return mixed Replaced string |
||
| 174 | */ |
||
| 175 | public static function replaceFirst($search, $replace, $subject) |
||
| 179 | |||
| 180 | /** |
||
| 181 | * Check whether a char or word exists in a string or not. |
||
| 182 | * |
||
| 183 | * This method is case sensitive. The need can be an array with multiple chars or words who |
||
| 184 | * are going to look up in the haystack string. |
||
| 185 | * |
||
| 186 | * If an array of needle words is provided the $strict parameter defines whether all need keys must be found |
||
| 187 | * in the string to get the `true` response or if just one of the keys are found the response is already `true`. |
||
| 188 | * |
||
| 189 | * ```php |
||
| 190 | * if (StringHelper::contains('foo', 'the foo bar Bar'')) { |
||
| 191 | * echo "yes!"; |
||
| 192 | * } |
||
| 193 | * ``` |
||
| 194 | * |
||
| 195 | * check if one of the given needles exists: |
||
| 196 | * |
||
| 197 | * ```php |
||
| 198 | * if (StringHelper::contains(['jungle', 'hell0], 'Welcome to the jungle!)) { |
||
| 199 | * echo "yes!"; |
||
| 200 | * } |
||
| 201 | * ``` |
||
| 202 | * |
||
| 203 | * @param string|array $needle The char or word to find in the $haystack. Can be an array to multi find words or char in the string. |
||
| 204 | * @param string $haystack The haystack where the $needle string should be looked up. A string or phrase with words. |
||
| 205 | * @param boolean $strict If an array of needles is provided the $strict parameter defines whether all keys must be found ($strict = true) or just one result must be found ($strict = false). |
||
| 206 | * @return boolean If an array of values is provided the response may change depending on $findAll. |
||
| 207 | */ |
||
| 208 | public static function contains($needle, $haystack, $strict = false) |
||
| 228 | |||
| 229 | /** |
||
| 230 | * "Minify" html content. |
||
| 231 | * |
||
| 232 | * + remove space |
||
| 233 | * + remove tabs |
||
| 234 | * + remove newlines |
||
| 235 | * + remove html comments |
||
| 236 | * |
||
| 237 | * @param string $content The content to minify. |
||
| 238 | * @param array $options Optional arguments to provide for minification: |
||
| 239 | * - comments: boolean, where html comments should be removed or not. defaults to false |
||
| 240 | * @return mixed Returns the minified content. |
||
| 241 | * @since 1.0.7 |
||
| 242 | */ |
||
| 243 | public static function minify($content, array $options = []) |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Cut the given word/string from the content. Its truncates to the left side and to the right side of the word. |
||
| 257 | * |
||
| 258 | * An example of how a sentenced is cut: |
||
| 259 | * |
||
| 260 | * ```php |
||
| 261 | * $cut = StringHelper::truncateMiddle('the quick fox jumped over the lazy dog', 'jumped', 12); |
||
| 262 | * echo $cut; // ..e quick fox jumped over the la.. |
||
| 263 | * ``` |
||
| 264 | * |
||
| 265 | * @param string $content The content to cut the words from. |
||
| 266 | * @param string $word The word which should be in the middle of the string |
||
| 267 | * @param integer $length The amount of the chars to cut on the left and right side from the word. |
||
| 268 | * @param string $affix The chars which should be used for prefix and suffix when string is cuted. |
||
| 269 | * @param boolean $caseSensitive Whether the search word in the string even when lower/upper case is not correct. |
||
| 270 | * @since 1.0.12 |
||
| 271 | */ |
||
| 272 | public static function truncateMiddle($content, $word, $length, $affix = '..', $caseSensitive = false) |
||
| 297 | |||
| 298 | /** |
||
| 299 | * Highlight a word within a content. |
||
| 300 | * |
||
| 301 | * Since version 1.0.14 an array of words to highlight is possible. |
||
| 302 | * |
||
| 303 | * > This function IS NOT case sensitive! |
||
| 304 | * |
||
| 305 | * |
||
| 306 | * |
||
| 307 | * @param string $content The content to find the word. |
||
| 308 | * @param string $word The word to find within the content. |
||
| 309 | * @param string $markup The markup used wrap the word to highlight. |
||
| 310 | * @since 1.0.12 |
||
| 311 | */ |
||
| 312 | public static function highlightWord($content, $word, $markup = '<b>%s</b>') |
||
| 333 | |||
| 334 | /** |
||
| 335 | * Multibyte-safe str_split funciton. |
||
| 336 | * |
||
| 337 | * @param string $string The string to split into an array |
||
| 338 | * @param integer $length The length of the chars to cut. |
||
| 339 | * @since 1.0.12 |
||
| 340 | * @see https://www.php.net/manual/de/function.str-split.php#115703 |
||
| 341 | */ |
||
| 342 | public static function mb_str_split($string, $length = 1) |
||
| 346 | |||
| 347 | /** |
||
| 348 | * Check whether a value is numeric or not. |
||
| 349 | * |
||
| 350 | * There are situations where is_numeric does not provide the desried result, |
||
| 351 | * like for example `is_numeric('3e30')` would return true, as e can be considered |
||
| 352 | * as exponential operator. |
||
| 353 | * |
||
| 354 | * Therfore this function checks with regex whether values or 0-9 if strict is enabled, |
||
| 355 | * which is default behavior. |
||
| 356 | * |
||
| 357 | * @param mixed $value The value to check. |
||
| 358 | * @param boolean $strict |
||
| 359 | * @return boolean |
||
| 360 | * @since 1.2.0 |
||
| 361 | */ |
||
| 362 | public static function isNummeric($value, $strict = true) |
||
| 378 | } |
||
| 379 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italyis not defined by the methodfinale(...).The most likely cause is that the parameter was removed, but the annotation was not.