@@ -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 static |
|
12 | + * @return |
|
13 | 13 | */ |
14 | 14 | public static function fromCharCode() |
15 | 15 | { |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | /** |
70 | 70 | * The concat() method combines the text of one or more strings and returns a new string. |
71 | 71 | * |
72 | - * @return static |
|
72 | + * @return |
|
73 | 73 | */ |
74 | 74 | public function concat() |
75 | 75 | { |
@@ -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 | { |
@@ -62,7 +62,6 @@ discard block |
||
62 | 62 | * Split a string by string. |
63 | 63 | * |
64 | 64 | * @param string $delimiter |
65 | - * @param int $limit |
|
66 | 65 | * @return \Recca0120\LoDash\JArray |
67 | 66 | */ |
68 | 67 | public function explode($delimiter) |
@@ -75,7 +74,6 @@ discard block |
||
75 | 74 | /** |
76 | 75 | * Convert all HTML entities to their applicable characters. |
77 | 76 | * |
78 | - * @param int $flags |
|
79 | 77 | * @return static |
80 | 78 | */ |
81 | 79 | public function htmlEntityDecode() |
@@ -88,7 +86,6 @@ discard block |
||
88 | 86 | /** |
89 | 87 | * Convert all applicable characters to HTML entities. |
90 | 88 | * |
91 | - * @param int $flags |
|
92 | 89 | * @return static |
93 | 90 | */ |
94 | 91 | public function htmlentities() |
@@ -101,7 +98,6 @@ discard block |
||
101 | 98 | /** |
102 | 99 | * Convert special HTML entities back to characters. |
103 | 100 | * |
104 | - * @param int $flags |
|
105 | 101 | * @return static |
106 | 102 | */ |
107 | 103 | public function htmlspecialcharsDecode() |
@@ -114,7 +110,6 @@ discard block |
||
114 | 110 | /** |
115 | 111 | * Convert special characters to HTML entities. |
116 | 112 | * |
117 | - * @param int $flags |
|
118 | 113 | * @return static |
119 | 114 | */ |
120 | 115 | public function htmlspecialchars() |
@@ -205,7 +200,7 @@ discard block |
||
205 | 200 | * Parses input from a string according to a format. |
206 | 201 | * |
207 | 202 | * @param string $format |
208 | - * @return static |
|
203 | + * @return JArray |
|
209 | 204 | */ |
210 | 205 | public function sscanf($format) |
211 | 206 | { |
@@ -248,7 +243,6 @@ discard block |
||
248 | 243 | /** |
249 | 244 | * Strip HTML and PHP tags from a string. |
250 | 245 | * |
251 | - * @param string $allowable_tags |
|
252 | 246 | * |
253 | 247 | * @return static |
254 | 248 | */ |