Passed
Push — main ( 82c9b1...c31313 )
by Teodoro
02:35
created
src/Writer/WriterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,5 +16,5 @@
 block discarded – undo
16 16
      * @param RowInterface|array $row
17 17
      * @return bool
18 18
      */
19
-    public function writeLine(RowInterface|array $row): bool;
19
+    public function writeLine(RowInterface | array $row): bool;
20 20
 }
Please login to merge, or discard this patch.
src/Writer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     /**
35 35
      * @inheritdoc
36 36
      */
37
-    public function writeLine(RowInterface|array $row): bool
37
+    public function writeLine(RowInterface | array $row): bool
38 38
     {
39 39
         return $this->fputcsv(
40 40
             $row instanceof RowInterface ? $row->toArray() : $row
Please login to merge, or discard this patch.