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
2namespace Apie\Common\Interfaces;
3
4use Apie\Common\RouteDefinitions\ActionHashmap;
5use Apie\Core\BoundedContext\BoundedContext;
6use Apie\Core\Context\ApieContext;
7
8interface RouteDefinitionProviderInterface
9{
10    public function getActionsForBoundedContext(BoundedContext $boundedContext, ApieContext $apieContext): ActionHashmap;
11}