| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class ExcludeInternalMethod implements MethodBased |
||
| 15 | { |
||
| 16 | /** @var MethodBased */ |
||
| 17 | private $check; |
||
| 18 | |||
| 19 | public function __construct(MethodBased $check) |
||
| 20 | { |
||
| 21 | $this->check = $check; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function __invoke(ReflectionMethod $fromMethod, ReflectionMethod $toMethod) : Changes |
||
| 31 | } |
||
| 32 | |||
| 33 | private function isInternalDocComment(string $comment) : bool |
||
| 38 |