Correct 2 Doc-block statements

This commit is contained in:
oleibman
2024-06-29 22:23:50 -07:00
parent 4b04cc1c8d
commit 4860e8e4b8
@@ -18,7 +18,7 @@ class Text
* @param mixed $value String Value
* Or can be an array of values
*
* @return array|int If an array of values is passed for the argument, then the returned result
* @return array|int|string If an array of values is passed for the argument, then the returned result
* will also be an array with matching dimensions
*/
public static function length(mixed $value = ''): array|int|string
@@ -46,7 +46,7 @@ class Text
* @param mixed $value2 String Value
* Or can be an array of values
*
* @return array|bool If an array of values is passed for either of the arguments, then the returned result
* @return array|bool|string If an array of values is passed for either of the arguments, then the returned result
* will also be an array with matching dimensions
*/
public static function exact(mixed $value1, mixed $value2): array|bool|string