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