@@ -30,10 +30,10 @@ private static function splitNumber(float|int $number): array
30
30
* Excel Function:
31
31
* BITAND(number1, number2)
32
32
*
33
- * @param null|array|bool|float|int|string $number1 Or can be an array of values
34
- * @param null|array|bool|float|int|string $number2 Or can be an array of values
33
+ * @param null|array<mixed> |bool|float|int|string $number1 Or can be an array of values
34
+ * @param null|array<mixed> |bool|float|int|string $number2 Or can be an array of values
35
35
*
36
- * @return array|int|string If an array of numbers is passed as an argument, then the returned result will also be an array
36
+ * @return array<mixed> |int|string If an array of numbers is passed as an argument, then the returned result will also be an array
37
37
* with the same dimensions
38
38
*/
39
39
public static function BITAND (null |array |bool |float |int |string $ number1 , null |array |bool |float |int |string $ number2 ): array |string |int |float
@@ -62,10 +62,10 @@ public static function BITAND(null|array|bool|float|int|string $number1, null|ar
62
62
* Excel Function:
63
63
* BITOR(number1, number2)
64
64
*
65
- * @param null|array|bool|float|int|string $number1 Or can be an array of values
66
- * @param null|array|bool|float|int|string $number2 Or can be an array of values
65
+ * @param null|array<mixed> |bool|float|int|string $number1 Or can be an array of values
66
+ * @param null|array<mixed> |bool|float|int|string $number2 Or can be an array of values
67
67
*
68
- * @return array|int|string If an array of numbers is passed as an argument, then the returned result will also be an array
68
+ * @return array<mixed> |int|string If an array of numbers is passed as an argument, then the returned result will also be an array
69
69
* with the same dimensions
70
70
*/
71
71
public static function BITOR (null |array |bool |float |int |string $ number1 , null |array |bool |float |int |string $ number2 ): array |string |int |float
@@ -95,10 +95,10 @@ public static function BITOR(null|array|bool|float|int|string $number1, null|arr
95
95
* Excel Function:
96
96
* BITXOR(number1, number2)
97
97
*
98
- * @param null|array|bool|float|int|string $number1 Or can be an array of values
99
- * @param null|array|bool|float|int|string $number2 Or can be an array of values
98
+ * @param null|array<mixed> |bool|float|int|string $number1 Or can be an array of values
99
+ * @param null|array<mixed> |bool|float|int|string $number2 Or can be an array of values
100
100
*
101
- * @return array|int|string If an array of numbers is passed as an argument, then the returned result will also be an array
101
+ * @return array<mixed> |int|string If an array of numbers is passed as an argument, then the returned result will also be an array
102
102
* with the same dimensions
103
103
*/
104
104
public static function BITXOR (null |array |bool |float |int |string $ number1 , null |array |bool |float |int |string $ number2 ): array |string |int |float
@@ -128,10 +128,10 @@ public static function BITXOR(null|array|bool|float|int|string $number1, null|ar
128
128
* Excel Function:
129
129
* BITLSHIFT(number, shift_amount)
130
130
*
131
- * @param null|array|bool|float|int|string $number Or can be an array of values
132
- * @param null|array|bool|float|int|string $shiftAmount Or can be an array of values
131
+ * @param null|array<mixed> |bool|float|int|string $number Or can be an array of values
132
+ * @param null|array<mixed> |bool|float|int|string $shiftAmount Or can be an array of values
133
133
*
134
- * @return array|float|string If an array of numbers is passed as an argument, then the returned result will also be an array
134
+ * @return array<mixed> |float|string If an array of numbers is passed as an argument, then the returned result will also be an array
135
135
* with the same dimensions
136
136
*/
137
137
public static function BITLSHIFT (null |array |bool |float |int |string $ number , null |array |bool |float |int |string $ shiftAmount ): array |string |float
@@ -163,10 +163,10 @@ public static function BITLSHIFT(null|array|bool|float|int|string $number, null|
163
163
* Excel Function:
164
164
* BITRSHIFT(number, shift_amount)
165
165
*
166
- * @param null|array|bool|float|int|string $number Or can be an array of values
167
- * @param null|array|bool|float|int|string $shiftAmount Or can be an array of values
166
+ * @param null|array<mixed> |bool|float|int|string $number Or can be an array of values
167
+ * @param null|array<mixed> |bool|float|int|string $shiftAmount Or can be an array of values
168
168
*
169
- * @return array|float|string If an array of numbers is passed as an argument, then the returned result will also be an array
169
+ * @return array<mixed> |float|string If an array of numbers is passed as an argument, then the returned result will also be an array
170
170
* with the same dimensions
171
171
*/
172
172
public static function BITRSHIFT (null |array |bool |float |int |string $ number , null |array |bool |float |int |string $ shiftAmount ): array |string |float
0 commit comments