| @@ -9,7 +9,7 @@ discard block | ||
| 9 | 9 | /** | 
| 10 | 10 | * The static String.fromCharCode() method returns a string created by using the specified sequence of Unicode values. | 
| 11 | 11 | * | 
| 12 | - * @return JString | |
| 12 | + * @return | |
| 13 | 13 | */ | 
| 14 | 14 | public static function fromCharCode() | 
| 15 | 15 |      { | 
| @@ -67,7 +67,7 @@ discard block | ||
| 67 | 67 | /** | 
| 68 | 68 | * The concat() method combines the text of one or more strings and returns a new string. | 
| 69 | 69 | * | 
| 70 | - * @return JString | |
| 70 | + * @return | |
| 71 | 71 | */ | 
| 72 | 72 | public function concat() | 
| 73 | 73 |      { | 
| @@ -4,8 +4,8 @@ | ||
| 4 | 4 | |
| 5 | 5 | use Recca0120\Lodash\JArray; | 
| 6 | 6 | use Recca0120\Lodash\JString\Extensions\Chinese; | 
| 7 | -use Recca0120\Lodash\JString\Extensions\FullCase; | |
| 8 | 7 | use Recca0120\Lodash\JString\Extensions\Converter; | 
| 8 | +use Recca0120\Lodash\JString\Extensions\FullCase; | |
| 9 | 9 | |
| 10 | 10 | trait PHP | 
| 11 | 11 |  { | 
| @@ -61,7 +61,6 @@ discard block | ||
| 61 | 61 | * Split a string by string. | 
| 62 | 62 | * | 
| 63 | 63 | * @param string $delimiter | 
| 64 | - * @param int $limit | |
| 65 | 64 | * @return \Recca0120\Lodash\JArray | 
| 66 | 65 | */ | 
| 67 | 66 | public function explode($delimiter) | 
| @@ -74,7 +73,6 @@ discard block | ||
| 74 | 73 | /** | 
| 75 | 74 | * Convert all HTML entities to their applicable characters. | 
| 76 | 75 | * | 
| 77 | - * @param int $flags | |
| 78 | 76 | * @return static | 
| 79 | 77 | */ | 
| 80 | 78 | public function htmlEntityDecode() | 
| @@ -87,7 +85,6 @@ discard block | ||
| 87 | 85 | /** | 
| 88 | 86 | * Convert all applicable characters to HTML entities. | 
| 89 | 87 | * | 
| 90 | - * @param int $flags | |
| 91 | 88 | * @return static | 
| 92 | 89 | */ | 
| 93 | 90 | public function htmlentities() | 
| @@ -100,7 +97,6 @@ discard block | ||
| 100 | 97 | /** | 
| 101 | 98 | * Convert special HTML entities back to characters. | 
| 102 | 99 | * | 
| 103 | - * @param int $flags | |
| 104 | 100 | * @return static | 
| 105 | 101 | */ | 
| 106 | 102 | public function htmlspecialcharsDecode() | 
| @@ -113,7 +109,6 @@ discard block | ||
| 113 | 109 | /** | 
| 114 | 110 | * Convert special characters to HTML entities. | 
| 115 | 111 | * | 
| 116 | - * @param int $flags | |
| 117 | 112 | * @return static | 
| 118 | 113 | */ | 
| 119 | 114 | public function htmlspecialchars() | 
| @@ -247,7 +242,6 @@ discard block | ||
| 247 | 242 | /** | 
| 248 | 243 | * Strip HTML and PHP tags from a string. | 
| 249 | 244 | * | 
| 250 | - * @param string $allowable_tags | |
| 251 | 245 | * @return static | 
| 252 | 246 | */ | 
| 253 | 247 | public function stripTags() |