Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
RouteDefinitionsProviderList | |
0.00% |
0 / 2 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getActionsForBoundedContext | |
0.00% |
0 / 1 |
|
0.00% |
0 / 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 RouteDefinitionsProviderList implements RouteDefinitionProviderInterface |
9 | { |
10 | public function __construct(private ActionHashmap $actionHashmap) |
11 | { |
12 | } |
13 | |
14 | public function getActionsForBoundedContext(BoundedContext $boundedContext, ApieContext $apieContext): ActionHashmap |
15 | { |
16 | return $this->actionHashmap; |
17 | } |
18 | } |