Remove deprecated methods in StringUtil
authorMatthias Schmidt <gravatronics@live.com>
Sat, 21 May 2016 21:09:18 +0000 (23:09 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Sat, 21 May 2016 21:09:18 +0000 (23:09 +0200)
CHANGELOG.md
wcfsetup/install/files/lib/util/StringUtil.class.php

index b8a88ed7b19d78a867684118955018a55bcd4f4d..017d6d9587042708c023db1f06fca6a09bce3ffe 100644 (file)
@@ -62,6 +62,7 @@
 * Version system removed.
 * Support for query string based sessions in Frontend removed.
 * Language server system removed.
+* Deprecated methods in `wcf\util\StringUtil` removed.
 
 #### Documentation
 
index 61ced27d2a7668a5ef5a9493f3e218113f8be871..9b8936742713d05759d4dd2f541cefecb1496f8d 100644 (file)
@@ -241,91 +241,6 @@ final class StringUtil {
                return str_replace('-', self::MINUS, $number);
        }
        
-       /**
-        * Sorts an array of strings and maintain index association.
-        * 
-        * @param       array           $strings
-        * @return      boolean
-        * 
-        * @deprecated
-        */
-       public static function sort(array &$strings) {
-               return asort($strings, SORT_LOCALE_STRING);
-       }
-       
-       /**
-        * Alias to php mb_strlen() function.
-        * 
-        * @deprecated use mb_strlen() instead
-        */
-       public static function length($string) {
-               return mb_strlen($string);
-       }
-       
-       /**
-        * Alias to php mb_strpos() function.
-        * 
-        * @deprecated use mb_strpos() instead
-        */
-       public static function indexOf($hayStack, $needle, $offset = 0) {
-               return mb_strpos($hayStack, $needle, $offset);
-       }
-       
-       /**
-        * Alias to php mb_stripos() function.
-        * 
-        * @deprecated use mb_stripos() instead
-        */
-       public static function indexOfIgnoreCase($hayStack, $needle, $offset = 0) {
-               return mb_stripos($hayStack, $needle, $offset);
-       }
-       
-       /**
-        * Alias to php mb_strrpos() function.
-        * 
-        * @deprecated use mb_strrpos() instead
-        */
-       public static function lastIndexOf($hayStack, $needle) {
-               return mb_strrpos($hayStack, $needle);
-       }
-       
-       /**
-        * Alias to php mb_substr() function.
-        * 
-        * @deprecated use mb_substr() instead
-        */
-       public static function substring($string, $start, $length = null) {
-               if ($length !== null) return mb_substr($string, $start, $length);
-               return mb_substr($string, $start);
-       }
-       
-       /**
-        * Alias to php mb_strtolower() function.
-        * 
-        * @deprecated use mb_strtolower() instead
-        */
-       public static function toLowerCase($string) {
-               return mb_strtolower($string);
-       }
-       
-       /**
-        * Alias to php mb_strtoupper() function.
-        * 
-        * @deprecated use mb_strtoupper() instead
-        */
-       public static function toUpperCase($string) {
-               return mb_strtoupper($string);
-       }
-       
-       /**
-        * Alias to php substr_count() function.
-        * 
-        * @deprecated use mb_substr_count() instead
-        */
-       public static function countSubstring($hayStack, $needle) {
-               return mb_substr_count($hayStack, $needle);
-       }
-       
        /**
         * Alias to php ucfirst() function with multibyte support.
         */
@@ -347,15 +262,6 @@ final class StringUtil {
                return mb_convert_case($string, MB_CASE_TITLE);
        }
        
-       /**
-        * Alias to php str_replace() function.
-        * 
-        * @deprecated please use str_replace() instead
-        */
-       public static function replace($search, $replace, $subject, &$count = null) {
-               return str_replace($search, $replace, $subject, $count);
-       }
-       
        /**
         * Alias to php str_ireplace() function with UTF-8 support.
         *