1 | <?php |
||
10 | class GitIgnoreExtractorHandler implements QueryHandlerInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var ReaderInterface |
||
14 | */ |
||
15 | private $reader; |
||
16 | |||
17 | /** |
||
18 | * GitIgnoreExtractor constructor. |
||
19 | * |
||
20 | * @param ReaderInterface $reader |
||
21 | */ |
||
22 | 1 | public function __construct(ReaderInterface $reader) |
|
26 | |||
27 | /** |
||
28 | * @return GitIgnoreDataResponse |
||
29 | */ |
||
30 | 1 | private function extract() |
|
36 | |||
37 | /** |
||
38 | * @param QueryInterface $query |
||
39 | * |
||
40 | * @return GitIgnoreDataResponse|GitIgnoreExtractor |
||
41 | */ |
||
42 | 1 | public function handle(QueryInterface $query) |
|
46 | } |
||
47 |