Comparison::compare()   B
last analyzed

Complexity

Conditions 11
Paths 11

Size

Total Lines 23
Code Lines 21

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 21
dl 0
loc 23
rs 7.3166
c 0
b 0
f 0
cc 11
nc 11
nop 3

How to fix   Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Phpml\Math;
6
7
use Phpml\Exception\InvalidArgumentException;
8
9
class Comparison
10
{
11
    /**
12
     * @param mixed $a
13
     * @param mixed $b
14
     *
15
     * @throws InvalidArgumentException
16
     */
17
    public static function compare($a, $b, string $operator): bool
18
    {
19
        switch ($operator) {
20
            case '>':
21
                return $a > $b;
22
            case '>=':
23
                return $a >= $b;
24
            case '=':
25
            case '==':
26
                return $a == $b;
27
            case '===':
28
                return $a === $b;
29
            case '<=':
30
                return $a <= $b;
31
            case '<':
32
                return $a < $b;
33
            case '!=':
34
            case '<>':
35
                return $a != $b;
36
            case '!==':
37
                return $a !== $b;
38
            default:
39
                throw new InvalidArgumentException(sprintf('Invalid operator "%s" provided', $operator));
40
        }
41
    }
42
}
43