| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class ExcludeInternalProperty implements PropertyBased |
||
| 12 | { |
||
| 13 | /** @var PropertyBased */ |
||
| 14 | private $propertyBased; |
||
| 15 | |||
| 16 | public function __construct(PropertyBased $propertyBased) |
||
| 17 | { |
||
| 18 | $this->propertyBased = $propertyBased; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function __invoke(ReflectionProperty $fromProperty, ReflectionProperty $toProperty) : Changes |
||
| 28 | } |
||
| 29 | |||
| 30 | private function isInternalDocComment(string $comment) : bool |
||
| 35 |