1 | <?php |
||
14 | final class StepBindService extends AbstractStep |
||
15 | { |
||
16 | /** @var string */ |
||
17 | private $serviceName; |
||
18 | |||
19 | /** @var string */ |
||
20 | private $applicationName; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | **/ |
||
25 | private $slice; |
||
26 | |||
27 | /** |
||
28 | * @param array $configuration Current application configuration. |
||
29 | * @param string $applicationName Name of the CF-application to be checked |
||
30 | * @param string $slice deployment location in blue/green deployment. |
||
31 | * @param string $serviceName Name of the CF service to create |
||
32 | */ |
||
33 | 5 | public function __construct(array $configuration, $applicationName, $slice, $serviceName) |
|
41 | |||
42 | /** |
||
43 | * returns the command |
||
44 | * |
||
45 | * @return array |
||
46 | */ |
||
47 | 4 | public function getCommand() |
|
56 | } |
||
57 |