Passed
Branch dev (e0c5fc)
by Observer
01:25
created
engine/components/graphic/TableLayoutPanel.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class TableLayoutPanel extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.TableLayoutPanel';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class TableLayoutPanel extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.TableLayoutPanel';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
engine/components/graphic/ListView.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@  discard block
 block discarded – undo
5 5
 class ListView extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.ListView';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class ListViewItem extends Control
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.ListViewItem';
14
-	protected ?string $assembly  = 'System.Windows.Forms';
14
+    protected ?string $assembly  = 'System.Windows.Forms';
15 15
 
16 16
     public function __construct (string $text = '')
17 17
     {
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 class ColumnHeader extends Control
25 25
 {
26 26
     protected ?string $classname = 'System.Windows.Forms.ColumnHeader';
27
-	protected ?string $assembly  = 'System.Windows.Forms';
27
+    protected ?string $assembly  = 'System.Windows.Forms';
28 28
 
29 29
     public function __construct (string $text = '')
30 30
     {
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 class ListViewGroup extends Control
38 38
 {
39 39
     protected ?string $classname = 'System.Windows.Forms.ListViewGroup';
40
-	protected ?string $assembly  = 'System.Windows.Forms';
40
+    protected ?string $assembly  = 'System.Windows.Forms';
41 41
 
42 42
     public function __construct (string $text = '')
43 43
     {
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,17 +5,17 @@  discard block
 block discarded – undo
5 5
 class ListView extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.ListView';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class ListViewItem extends Control
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.ListViewItem';
14
-	protected ?string $assembly  = 'System.Windows.Forms';
14
+	protected ?string $assembly = 'System.Windows.Forms';
15 15
 
16
-    public function __construct (string $text = '')
16
+    public function __construct(string $text = '')
17 17
     {
18
-        parent::__construct ();
18
+        parent::__construct();
19 19
 
20 20
         $this->text = $text;
21 21
     }
@@ -24,11 +24,11 @@  discard block
 block discarded – undo
24 24
 class ColumnHeader extends Control
25 25
 {
26 26
     protected ?string $classname = 'System.Windows.Forms.ColumnHeader';
27
-	protected ?string $assembly  = 'System.Windows.Forms';
27
+	protected ?string $assembly = 'System.Windows.Forms';
28 28
 
29
-    public function __construct (string $text = '')
29
+    public function __construct(string $text = '')
30 30
     {
31
-        parent::__construct ();
31
+        parent::__construct();
32 32
 
33 33
         $this->text = $text;
34 34
     }
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
 class ListViewGroup extends Control
38 38
 {
39 39
     protected ?string $classname = 'System.Windows.Forms.ListViewGroup';
40
-	protected ?string $assembly  = 'System.Windows.Forms';
40
+	protected ?string $assembly = 'System.Windows.Forms';
41 41
 
42
-    public function __construct (string $text = '')
42
+    public function __construct(string $text = '')
43 43
     {
44
-        parent::__construct ();
44
+        parent::__construct();
45 45
 
46 46
         $this->header = $text;
47 47
     }
Please login to merge, or discard this patch.
engine/components/graphic/NumericUpDown.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class NumericUpDown extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.NumericUpDown';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class NumericUpDown extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.NumericUpDown';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
engine/components/graphic/TrackBar.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class TrackBar extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.TrackBar';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class TrackBar extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.TrackBar';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
engine/components/graphic/CheckBox.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class CheckBox extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.CheckBox';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class CheckBox extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.CheckBox';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
engine/components/graphic/GroupBox.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class GroupBox extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.GroupBox';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class GroupBox extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.GroupBox';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
engine/components/graphic/SplitContainer.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class SplitContainer extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.SplitContainer';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class SplitContainer extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.SplitContainer';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
engine/components/graphic/ComboBox.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class ComboBox extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.ComboBox';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class ComboBox extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.ComboBox';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.
engine/components/graphic/TextBox.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,17 +5,17 @@
 block discarded – undo
5 5
 class TextBox extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.TextBox';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class MaskedTextBox extends Control
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.MaskedTextBox';
14
-	protected ?string $assembly  = 'System.Windows.Forms';
14
+    protected ?string $assembly  = 'System.Windows.Forms';
15 15
 }
16 16
 
17 17
 class RichTextBox extends Control
18 18
 {
19 19
     protected ?string $classname = 'System.Windows.Forms.RichTextBox';
20
-	protected ?string $assembly  = 'System.Windows.Forms';
20
+    protected ?string $assembly  = 'System.Windows.Forms';
21 21
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,17 +5,17 @@
 block discarded – undo
5 5
 class TextBox extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.TextBox';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class MaskedTextBox extends Control
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.MaskedTextBox';
14
-	protected ?string $assembly  = 'System.Windows.Forms';
14
+	protected ?string $assembly = 'System.Windows.Forms';
15 15
 }
16 16
 
17 17
 class RichTextBox extends Control
18 18
 {
19 19
     protected ?string $classname = 'System.Windows.Forms.RichTextBox';
20
-	protected ?string $assembly  = 'System.Windows.Forms';
20
+	protected ?string $assembly = 'System.Windows.Forms';
21 21
 }
Please login to merge, or discard this patch.