1 | <?php |
||
6 | class CreateConfigurationRequest |
||
7 | { |
||
8 | /** @var string */ |
||
9 | private $destinationFolder; |
||
10 | /** @var Configuration */ |
||
11 | private $configuration; |
||
12 | /** @var Configuration */ |
||
13 | private $templateConfiguration; |
||
14 | |||
15 | /** |
||
16 | * @param Configuration $configuration |
||
17 | * @param string $destinationFolder |
||
18 | */ |
||
19 | public function __construct( |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getDestinationFolder() |
||
36 | |||
37 | /** |
||
38 | * @return Configuration |
||
39 | */ |
||
40 | public function getConfiguration() |
||
44 | |||
45 | /** |
||
46 | * @return Configuration |
||
47 | */ |
||
48 | public function getTemplateConfiguration() |
||
52 | } |
||
53 |