Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
23 | public function __construct(array $configuration) |
||
24 | { |
||
25 | $extractAssociations = (bool) ($configuration['associations'] ?? false); |
||
26 | $this->associationsBuilder = $extractAssociations ? new EdgesBuilder() : new NoAssociationsBuilder(); |
||
27 | $theme = new ThemeName($configuration['theme']); |
||
28 | $hideEmptyBlocks = (bool) ($configuration['hide-empty-blocks'] ?? false); |
||
29 | $this->digraphStyle = $hideEmptyBlocks |
||
30 | ? DigraphStyle::withoutEmptyBlocks($theme) |
||
31 | : DigraphStyle::default($theme); |
||
32 | } |
||
44 |