Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
35 | class InstallationNode extends AbstractNode |
||
36 | { |
||
37 | |||
38 | /** |
||
39 | * The installation steps. |
||
40 | * |
||
41 | * @var array |
||
42 | * @DI\Mapping(nodeName="steps/step", nodeType="array", elementType="AppserverIo\Provisioning\Api\Node\StepNode") |
||
43 | */ |
||
44 | protected $steps; |
||
45 | |||
46 | /** |
||
47 | * Sets the installation steps. |
||
48 | * |
||
49 | * @param array $steps The installation steps |
||
50 | * |
||
51 | * @return void |
||
52 | */ |
||
53 | public function setSteps(array $steps) |
||
56 | } |
||
57 | |||
58 | /** |
||
59 | * Returns the installation step. |
||
60 | * |
||
61 | * @return array |
||
62 | */ |
||
63 | public function getSteps() |
||
68 |