PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.2.1
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.2.1
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | vendor/markbaker/matrix/classes/src/Builder.php +3 -4 3.10.133.2.1 View file →
@@ -6,9 +6,8 @@
6 6 *
7 7 * @copyright Copyright (c) 2018 Mark Baker (https://github.com/MarkBaker/PHPMatrix)
8 8 * @license https://opensource.org/licenses/MIT MIT
9 9 */
10 -
11 10 namespace Matrix;
12 11
13 12 /**
14 13 * Matrix Builder class.
@@ -20,11 +19,11 @@
20 19 /**
21 20 * Create a new matrix of specified dimensions, and filled with a specified value
22 21 * If the column argument isn't provided, then a square matrix will be created
23 22 *
24 - * @param mixed $value
25 - * @param int $rows
26 - * @param int|null $columns
23 + * @param $value
24 + * @param $rows
25 + * @param null $columns
27 26 * @return Matrix
28 27 * @throws Exception
29 28 */
30 29 public static function createFilledMatrix($value, $rows, $columns = null)