| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class MultiConstantBased implements ConstantBased |
||
| 12 | { |
||
| 13 | /** @var ConstantBased[] */ |
||
| 14 | private $checks; |
||
| 15 | |||
| 16 | public function __construct(ConstantBased ...$checks) |
||
| 17 | { |
||
| 18 | $this->checks = $checks; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function compare(ReflectionClassConstant $fromConstant, ReflectionClassConstant $toConstant) : Changes |
||
| 29 | ); |
||
| 30 | } |
||
| 32 |