| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Matrices |
||
| 8 | { |
||
| 9 | const IMMUTABLE_MATRIX = ''; |
||
| 10 | const MUTABLE_MATRIX = ''; |
||
| 11 | |||
| 12 | public static function zeroMatrix(string $type, int $rows, int $columns): MatrixInterface |
||
| 13 | { |
||
| 14 | |||
| 15 | } |
||
| 16 | |||
| 17 | public static function onesMatrix(string $type, int $rows, int $columns): MatrixInterface |
||
| 18 | { |
||
| 19 | |||
| 20 | } |
||
| 21 | |||
| 22 | public static function identityMatrix(string $type, int $size): MatrixInterface |
||
| 24 | |||
| 25 | } |
||
| 26 | |||
| 27 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.