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\ActionDefinitions;
3
4use Apie\Core\BoundedContext\BoundedContext;
5use Apie\Core\Context\ApieContext;
6
7interface ActionDefinitionInterface
8{
9    /**
10     * @return array<int, static>
11     */
12    public static function provideActionDefinitions(BoundedContext $boundedContext, ApieContext $apieContext, bool $runtimeChecks = false): array;
13}