Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
ApplicationConfiguration
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
2 / 2
2
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 createConfiguration
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\HtmlBuilders\Configuration;
3
4use Apie\Core\BoundedContext\BoundedContextHashmap;
5use Apie\Core\BoundedContext\BoundedContextId;
6use Apie\Core\Context\ApieContext;
7
8class ApplicationConfiguration
9{
10    /**
11     * @param array<int|string, mixed> $config
12     */
13    public function __construct(private array $config = [])
14    {
15        $this->config = $config;
16    }
17
18    public function createConfiguration(
19        ApieContext $context,
20        BoundedContextHashmap $boundedContextHashmap,
21        ?BoundedContextId $selected
22    ): CurrentConfiguration {
23        return new CurrentConfiguration($this->config, $context, $boundedContextHashmap, $selected);
24    }
25}