Completed
Pull Request — master (#49)
by Povilas
03:08
created

MatrixException   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 0
dl 0
loc 26
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A notSquareMatrix() 0 4 1
A columnOutOfRange() 0 4 1
A singularMatrix() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Phpml\Exception;
6
7
class MatrixException extends \Exception
8
{
9
    /**
10
     * @return MatrixException
11
     */
12
    public static function notSquareMatrix()
13
    {
14
        return new self('Matrix is not square matrix');
15
    }
16
17
    /**
18
     * @return MatrixException
19
     */
20
    public static function columnOutOfRange()
21
    {
22
        return new self('Column out of range');
23
    }
24
25
    /**
26
     * @return MatrixException
27
     */
28
    public static function singularMatrix()
29
    {
30
       return new self('Matrix is singular');
31
    }
32
}
33