1 | <?php |
||
6 | class UpdateConfigurationFileListRequest |
||
7 | { |
||
8 | /** @var string */ |
||
9 | private $destinationFolder; |
||
10 | /** @var ConfigurationFile[] */ |
||
11 | private $configurationList; |
||
12 | |||
13 | /** |
||
14 | * @param ConfigurationFile[] $configurationList |
||
15 | * @param string $destinationFolder |
||
16 | */ |
||
17 | public function __construct(array $configurationList, $destinationFolder) |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getDestinationFolder() |
||
30 | |||
31 | /** |
||
32 | * @return ConfigurationFile[] |
||
33 | */ |
||
34 | public function getConfigurationFileList() |
||
38 | } |
||
39 |