| @@ -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) |