Passed
Pull Request — master (#532)
by
unknown
03:00
created
src/Statements/ReplaceStatement.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Tables used as target for this statement.
56 56
      */
57
-    public IntoKeyword|null $into = null;
57
+    public IntoKeyword | null $into = null;
58 58
 
59 59
     /**
60 60
      * Values to be replaced.
61 61
      *
62 62
      * @var ArrayObj[]|null
63 63
      */
64
-    public array|null $values = null;
64
+    public array | null $values = null;
65 65
 
66 66
     /**
67 67
      * If SET clause is present
@@ -69,13 +69,13 @@  discard block
 block discarded – undo
69 69
      *
70 70
      * @var SetOperation[]|null
71 71
      */
72
-    public array|null $set = null;
72
+    public array | null $set = null;
73 73
 
74 74
     /**
75 75
      * If SELECT clause is present
76 76
      * holds the SelectStatement.
77 77
      */
78
-    public SelectStatement|null $select = null;
78
+    public SelectStatement | null $select = null;
79 79
 
80 80
     public function build(): string
81 81
     {
Please login to merge, or discard this patch.