PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.2
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.2
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 +4 -3 3.1.33.4.2 View file →
@@ -6,8 +6,9 @@
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 +
10 11 namespace Matrix;
11 12
12 13 /**
13 14 * Matrix Builder class.
@@ -19,11 +20,11 @@
19 20 /**
20 21 * Create a new matrix of specified dimensions, and filled with a specified value
21 22 * If the column argument isn't provided, then a square matrix will be created
22 23 *
23 - * @param $value
24 - * @param $rows
25 - * @param null $columns
24 + * @param mixed $value
25 + * @param int $rows
26 + * @param int|null $columns
26 27 * @return Matrix
27 28 * @throws Exception
28 29 */
29 30 public static function createFilledMatrix($value, $rows, $columns = null)