Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
7 | final class TemporalDeclarationProvider |
||
8 | { |
||
9 | public function __construct( |
||
10 | /** @var class-string[] $workflows */ |
||
11 | private readonly array $workflows, |
||
12 | /** @var class-string[] $activities */ |
||
13 | private readonly array $activities, |
||
14 | ) { |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * @return class-string[] |
||
|
|||
19 | */ |
||
20 | public function getWorkflows(): array |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return class-string[] |
||
27 | */ |
||
28 | public function getActivities(): array |
||
33 |