@@ -30,10 +30,10 @@ private static function splitNumber(float|int $number): array
3030 * Excel Function:
3131 * BITAND(number1, number2)
3232 *
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
3535 *
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
3737 * with the same dimensions
3838 */
3939 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
6262 * Excel Function:
6363 * BITOR(number1, number2)
6464 *
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
6767 *
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
6969 * with the same dimensions
7070 */
7171 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
9595 * Excel Function:
9696 * BITXOR(number1, number2)
9797 *
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
100100 *
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
102102 * with the same dimensions
103103 */
104104 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
128128 * Excel Function:
129129 * BITLSHIFT(number, shift_amount)
130130 *
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
133133 *
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
135135 * with the same dimensions
136136 */
137137 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|
163163 * Excel Function:
164164 * BITRSHIFT(number, shift_amount)
165165 *
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
168168 *
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
170170 * with the same dimensions
171171 */
172172 public static function BITRSHIFT (null |array |bool |float |int |string $ number , null |array |bool |float |int |string $ shiftAmount ): array |string |float
0 commit comments