Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
5 / 5 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
ChainedRouteDefinitionsProvider | |
100.00% |
5 / 5 |
|
100.00% |
2 / 2 |
3 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getActionsForBoundedContext | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
2 |
1 | <?php |
2 | namespace Apie\Common\RouteDefinitions; |
3 | |
4 | use Apie\Common\Interfaces\RouteDefinitionProviderInterface; |
5 | use Apie\Core\BoundedContext\BoundedContext; |
6 | use Apie\Core\Context\ApieContext; |
7 | |
8 | class ChainedRouteDefinitionsProvider implements RouteDefinitionProviderInterface |
9 | { |
10 | /** |
11 | * @var RouteDefinitionProviderInterface[] |
12 | */ |
13 | private array $routeDefinitions; |
14 | |
15 | public function __construct(RouteDefinitionProviderInterface... $routeDefinitions) |
16 | { |
17 | $this->routeDefinitions = $routeDefinitions; |
18 | } |
19 | |
20 | public function getActionsForBoundedContext(BoundedContext $boundedContext, ApieContext $apieContext): ActionHashmap |
21 | { |
22 | $actionHashmap = new ActionHashmap(); |
23 | foreach ($this->routeDefinitions as $routeDefinition) { |
24 | $actionHashmap = $actionHashmap->merge($routeDefinition->getActionsForBoundedContext($boundedContext, $apieContext)); |
25 | } |
26 | return $actionHashmap; |
27 | } |
28 | } |