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\Actions\ApieFacadeInterface as ActionsApieFacadeInterface; |
6 | use Apie\Core\BoundedContext\BoundedContext; |
7 | use Apie\Core\BoundedContext\BoundedContextId; |
8 | use Apie\Core\Context\ApieContext; |
9 | |
10 | interface ApieFacadeInterface extends ActionsApieFacadeInterface |
11 | { |
12 | public function getActionsForBoundedContext( |
13 | BoundedContextId|BoundedContext $boundedContext, |
14 | ApieContext $apieContext |
15 | ): ActionHashmap; |
16 | } |