| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class MultipleChecksOnAProperty implements PropertyBased |
||
| 12 | { |
||
| 13 | /** @var PropertyBased[] */ |
||
| 14 | private $checks; |
||
| 15 | |||
| 16 | public function __construct(PropertyBased ...$checks) |
||
| 19 | } |
||
| 20 | |||
| 21 | public function __invoke(ReflectionProperty $fromProperty, ReflectionProperty $toProperty) : Changes |
||
| 24 | } |
||
| 25 | |||
| 26 | /** @return iterable|Change[] */ |
||
| 27 | private function multipleChecks(ReflectionProperty $fromProperty, ReflectionProperty $toProperty) : iterable |
||
| 34 |