Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class WidgetArrangement implements ArgumentInterface |
||
10 | { |
||
11 | /** |
||
12 | * @param AbstractBlock $block |
||
13 | * @return AbstractBlock[][] |
||
14 | */ |
||
15 | public function getChildrenInColumns(AbstractBlock $block): array |
||
16 | { |
||
17 | $children = $block->getLayout()->getChildBlocks($block->getNameInLayout()); |
||
18 | return $this->arrange($children); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @param AbstractBlock[] $children |
||
23 | * @return AbstractBlock[][] |
||
24 | */ |
||
25 | public function arrange(array $children): array |
||
33 | } |
||
34 | |||
35 | private function getColumnCount(): int |
||
38 | } |
||
39 | } |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths