1 | <?php |
||
13 | class ConfigurationAssembler implements ExecutableInterface |
||
14 | { |
||
15 | /** @var Configuration */ |
||
16 | private $configuration; |
||
17 | |||
18 | /** |
||
19 | * @param Configuration $configuration |
||
20 | */ |
||
21 | public function setConfiguration(Configuration $configuration) |
||
25 | |||
26 | /** |
||
27 | * @param array $input |
||
28 | * @return array |
||
29 | * @throws ExecutableException |
||
30 | */ |
||
31 | public function execute($input = null) |
||
46 | } |