| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | final class AccessibleMethodChange implements MethodBased |
||
| 14 | { |
||
| 15 | /** @var MethodBased */ |
||
| 16 | private $check; |
||
| 17 | |||
| 18 | public function __construct(MethodBased $check) |
||
| 19 | { |
||
| 20 | $this->check = $check; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function compare(ReflectionMethod $fromMethod, ReflectionMethod $toMethod) : Changes |
||
| 30 | } |
||
| 31 | } |
||
| 32 |