1 | <?php |
||
7 | class GitIgnoreWriter |
||
8 | { |
||
9 | /** |
||
10 | * @var WriterInterface |
||
11 | */ |
||
12 | private $gitIgnoreWriter; |
||
13 | |||
14 | /** |
||
15 | * GitIgnoreWriter constructor. |
||
16 | * |
||
17 | * @param WriterInterface $gitIgnoreWriter |
||
18 | */ |
||
19 | 1 | public function __construct(WriterInterface $gitIgnoreWriter) |
|
23 | |||
24 | /** |
||
25 | * @param string $content |
||
26 | */ |
||
27 | 1 | public function write($content) |
|
31 | } |
||
32 |