Completed
Pull Request — master (#38)
by Marco
03:32
created

MultiMethodBased   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
dl 0
loc 18
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A compare() 0 8 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Roave\ApiCompare\Comparator\BackwardsCompatibility\MethodBased;
6
7
use Roave\ApiCompare\Changes;
8
use Roave\BetterReflection\Reflection\ReflectionMethod;
9
use Roave\BetterReflection\Reflection\ReflectionProperty;
10
11
final class MultiMethodBased implements MethodBased
12
{
13
    /** @var MethodBased[] */
14
    private $checks;
15
16
    public function __construct(MethodBased ...$checks)
17
    {
18
        $this->checks = $checks;
19
    }
20
21
    public function compare(ReflectionMethod $fromMethod, ReflectionMethod $toMethod) : Changes
22
    {
23
        return array_reduce(
24
            $this->checks,
25
            function (Changes $changes, MethodBased $check) use ($fromMethod, $toMethod) : Changes {
26
                return $changes->mergeWith($check->compare($fromMethod, $toMethod));
27
            },
28
            Changes::new()
29
        );
30
    }
31
}
32