1 | <?php |
||
8 | class GitIgnoreExtractor |
||
9 | { |
||
10 | /** |
||
11 | * @var ReaderInterface |
||
12 | */ |
||
13 | private $reader; |
||
14 | |||
15 | /** |
||
16 | * GitIgnoreExtractor constructor. |
||
17 | * |
||
18 | * @param ReaderInterface $reader |
||
19 | */ |
||
20 | 1 | public function __construct(ReaderInterface $reader) |
|
24 | |||
25 | /** |
||
26 | * @return GitIgnoreDataResponse |
||
27 | */ |
||
28 | 1 | public function extract() |
|
34 | } |
||
35 |