Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | abstract class AbstractStep implements StepInterface |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var ArtifactCollection |
||
17 | */ |
||
18 | protected $artifacts; |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | 1 | public function getName() : string |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param ArtifactCollection $artifacts |
||
30 | * |
||
31 | * @return StepInterface |
||
32 | */ |
||
33 | 1 | public function setArtifacts(ArtifactCollection $artifacts): StepInterface |
|
38 | } |
||
39 | } |