1 | <?php |
||
10 | class Writer { |
||
11 | |||
12 | private $content = ''; |
||
13 | private $indentationLevel = 0; |
||
14 | private $indentation; |
||
15 | |||
16 | private $options = [ |
||
17 | 'indentation_character' => "\t", |
||
18 | 'indentation_size' => 1 |
||
19 | ]; |
||
20 | |||
21 | 2 | public function __construct($options = []) { |
|
27 | |||
28 | 2 | public function indent() { |
|
33 | |||
34 | 2 | public function outdent() { |
|
43 | |||
44 | /** |
||
45 | * |
||
46 | * @param string $content |
||
47 | */ |
||
48 | 2 | public function writeln($content = '') { |
|
53 | |||
54 | /** |
||
55 | * |
||
56 | * @param string $content |
||
57 | */ |
||
58 | 2 | public function write($content) { |
|
76 | |||
77 | public function rtrim() { |
||
87 | |||
88 | public function endsWith($search) { |
||
91 | |||
92 | public function reset() { |
||
98 | |||
99 | 2 | public function getContent() { |
|
102 | } |
||
103 |