| 1 | <?php |
||
| 11 | class GitIgnoreExtractorQueryHandler implements QueryHandlerInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var GitIgnoreExtractor |
||
| 15 | */ |
||
| 16 | private $gitIgnoreExtractor; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * GitIgnoreExtractorQueryHandler constructor. |
||
| 20 | * |
||
| 21 | * @param GitIgnoreExtractor $gitIgnoreExtractor |
||
| 22 | */ |
||
| 23 | 1 | public function __construct(GitIgnoreExtractor $gitIgnoreExtractor) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param QueryInterface $query |
||
| 30 | * |
||
| 31 | * @return GitIgnoreDataResponse|GitIgnoreExtractorQuery |
||
| 32 | */ |
||
| 33 | 1 | public function handle(QueryInterface $query) |
|
| 37 | } |
||
| 38 |