1 | <?php |
||
10 | class ConfigurationDataFinderQueryHandler implements QueryHandlerInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var ConfigurationDataFinder |
||
14 | */ |
||
15 | private $configurationDataFinder; |
||
16 | |||
17 | /** |
||
18 | * ConfigurationDataFinderQueryHandler constructor. |
||
19 | * |
||
20 | * @param ConfigurationDataFinder $configurationDataFinder |
||
21 | */ |
||
22 | 1 | public function __construct(ConfigurationDataFinder $configurationDataFinder) |
|
26 | |||
27 | /** |
||
28 | * @param QueryInterface $query |
||
29 | * |
||
30 | * @return ConfigurationDataResponse |
||
31 | */ |
||
32 | public function handle(QueryInterface $query) |
||
36 | } |
||
37 |