| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 80% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class IgnoreColumns extends AbstractPipeArrayProcessor implements ArrayProcessorInterface |
||
| 8 | { |
||
| 9 | /** @var array<int, int> */ |
||
| 10 | private array $columns; |
||
| 11 | |||
| 12 | 7 | public function __construct(ArrayProcessorInterface $next = null, int ...$columns) |
|
| 16 | } |
||
| 17 | |||
| 18 | /** @return array<int, int> */ |
||
| 19 | public function getColumns(): array |
||
| 22 | } |
||
| 23 | |||
| 24 | /** @inheritdoc */ |
||
| 25 | 7 | public function execute(array $array): array |
|
| 37 |