1 | <?php |
||
6 | class UpdateConfigurationRequest |
||
7 | { |
||
8 | /** @var string */ |
||
9 | private $destinationFolder; |
||
10 | /** @var Configuration */ |
||
11 | private $newConfiguration; |
||
12 | /** @var Configuration */ |
||
13 | private $baseConfiguration; |
||
14 | /** @var Configuration */ |
||
15 | private $templateConfiguration; |
||
16 | |||
17 | /** |
||
18 | * @param Configuration $baseConfiguration |
||
19 | * @param Configuration $newConfiguration |
||
20 | * @param string $destinationFolder |
||
21 | * @param Configuration|null $templateConfiguration |
||
22 | */ |
||
23 | public function __construct( |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getDestinationFolder() |
||
42 | |||
43 | /** |
||
44 | * @return Configuration |
||
45 | */ |
||
46 | public function getNewConfiguration() |
||
50 | |||
51 | /** |
||
52 | * @return Configuration |
||
53 | */ |
||
54 | public function getBaseConfiguration() |
||
58 | |||
59 | /** |
||
60 | * @return Configuration |
||
61 | */ |
||
62 | public function getTemplateConfiguration() |
||
66 | } |
||
67 |