Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | namespace Apie\Common\Interfaces; |
3 | |
4 | use Apie\Common\RouteDefinitions\ActionHashmap; |
5 | use Apie\Core\BoundedContext\BoundedContext; |
6 | use Apie\Core\Context\ApieContext; |
7 | |
8 | interface RouteDefinitionProviderInterface |
9 | { |
10 | public function getActionsForBoundedContext(BoundedContext $boundedContext, ApieContext $apieContext): ActionHashmap; |
11 | } |