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