Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class TemporalDeclarationProvider |
||
8 | { |
||
9 | 12 | 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 | 12 | } |
|
16 | |||
17 | /** |
||
18 | * @return class-string[] |
||
|
|||
19 | */ |
||
20 | 1 | public function getWorkflows(): array |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return class-string[] |
||
27 | */ |
||
28 | 1 | public function getActivities(): array |
|
31 | } |
||
32 | } |
||
33 |