Passed
Branch main (3df0d9)
by Jacobo
13:51
created
Category
src/Toon/LineWriter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 
7 7
 class LineWriter
8 8
 {
9
-    private array $lines = [];
9
+    private array $lines = [ ];
10 10
     private int $indent = 0;
11 11
 
12 12
     public function __construct(
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function line(string $content = ''): void
17 17
     {
18 18
         $indentation = str_repeat(' ', $this->indent * $this->indentSize);
19
-        $this->lines[] = $indentation.$content;
19
+        $this->lines[ ] = $indentation . $content;
20 20
     }
21 21
 
22 22
     public function indent(): void
Please login to merge, or discard this patch.