Passed
Branch dev (e0c5fc)
by Observer
01:25
created
engine/components/graphic/ProgressBar.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 class ProgressBar extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.ProgressBar';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 
10 10
     public function get_max ()
11 11
     {
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -5,35 +5,35 @@
 block discarded – undo
5 5
 class ProgressBar extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.ProgressBar';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 
10
-    public function get_max ()
10
+    public function get_max()
11 11
     {
12
-        return $this->getProperty ('Maximum');
12
+        return $this->getProperty('Maximum');
13 13
     }
14 14
 
15
-    public function set_max (int $max)
15
+    public function set_max(int $max)
16 16
     {
17
-        $this->setProperty ('Maximum', $max);
17
+        $this->setProperty('Maximum', $max);
18 18
     }
19 19
 
20
-    public function get_min ()
20
+    public function get_min()
21 21
     {
22
-        return $this->getProperty ('Minimum');
22
+        return $this->getProperty('Minimum');
23 23
     }
24 24
 
25
-    public function set_min (int $min)
25
+    public function set_min(int $min)
26 26
     {
27
-        $this->setProperty ('Minimum', $min);
27
+        $this->setProperty('Minimum', $min);
28 28
     }
29 29
 
30
-    public function get_position ()
30
+    public function get_position()
31 31
     {
32
-        return $this->getProperty ('Value');
32
+        return $this->getProperty('Value');
33 33
     }
34 34
 
35
-    public function set_position (int $position)
35
+    public function set_position(int $position)
36 36
     {
37
-        $this->setProperty ('Value', $position);
37
+        $this->setProperty('Value', $position);
38 38
     }
39 39
 }
Please login to merge, or discard this patch.
engine/components/graphic/Panel.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 Panel extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.Panel';
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 Panel extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.Panel';
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/ToolStrip.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@
 block discarded – undo
5 5
 class ToolStrip extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.ToolStrip';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class ToolStripStatusLabel extends Control
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.ToolStripStatusLabel';
14
-	protected ?string $assembly  = 'System.Windows.Forms';
14
+    protected ?string $assembly  = 'System.Windows.Forms';
15 15
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@
 block discarded – undo
5 5
 class ToolStrip extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.ToolStrip';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class ToolStripStatusLabel extends Control
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.ToolStripStatusLabel';
14
-	protected ?string $assembly  = 'System.Windows.Forms';
14
+	protected ?string $assembly = 'System.Windows.Forms';
15 15
 }
Please login to merge, or discard this patch.
engine/components/graphic/MenuStrip.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,19 +5,19 @@
 block discarded – undo
5 5
 class MenuStrip extends Component
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.MenuStrip';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class ContextMenuStrip extends Component
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.ContextMenuStrip';
14
-	protected ?string $assembly  = 'System.Windows.Forms';
14
+    protected ?string $assembly  = 'System.Windows.Forms';
15 15
 }
16 16
 
17 17
 class ToolStripMenuItem extends Control
18 18
 {
19 19
     protected ?string $classname = 'System.Windows.Forms.ToolStripMenuItem';
20
-	protected ?string $assembly  = 'System.Windows.Forms';
20
+    protected ?string $assembly  = 'System.Windows.Forms';
21 21
 
22 22
     public function __construct (string $text = '')
23 23
     {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,23 +5,23 @@
 block discarded – undo
5 5
 class MenuStrip extends Component
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.MenuStrip';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class ContextMenuStrip extends Component
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.ContextMenuStrip';
14
-	protected ?string $assembly  = 'System.Windows.Forms';
14
+	protected ?string $assembly = 'System.Windows.Forms';
15 15
 }
16 16
 
17 17
 class ToolStripMenuItem extends Control
18 18
 {
19 19
     protected ?string $classname = 'System.Windows.Forms.ToolStripMenuItem';
20
-	protected ?string $assembly  = 'System.Windows.Forms';
20
+	protected ?string $assembly = 'System.Windows.Forms';
21 21
 
22
-    public function __construct (string $text = '')
22
+    public function __construct(string $text = '')
23 23
     {
24
-        parent::__construct ();
24
+        parent::__construct();
25 25
 
26 26
         $this->text = $text;
27 27
     }
Please login to merge, or discard this patch.
engine/components/graphic/Button.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 Button extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.Button';
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 Button extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.Button';
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/TabControl.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@
 block discarded – undo
5 5
 class TabControl extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.TabControl';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class TabPage extends Control
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.TabPage';
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
     {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,17 +5,17 @@
 block discarded – undo
5 5
 class TabControl extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.TabControl';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
10 10
 
11 11
 class TabPage extends Control
12 12
 {
13 13
     protected ?string $classname = 'System.Windows.Forms.TabPage';
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
     }
Please login to merge, or discard this patch.
engine/components/graphic/MonthCalendar.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 MonthCalendar extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.MonthCalendar';
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 MonthCalendar extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.MonthCalendar';
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/WebBrowser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
     protected ?string $classname = 'System.Windows.Forms.WebBrowser';
8 8
     protected ?string $assembly  = 'System.Windows.Forms';
9 9
 
10
-    public function browse (string $url): void
10
+    public function browse(string $url): void
11 11
     {
12
-        $this->callMethod ('Navigate', $url);
12
+        $this->callMethod('Navigate', $url);
13 13
     }
14 14
 }
Please login to merge, or discard this patch.
engine/components/graphic/DateTimePicker.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 DateTimePicker extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.DateTimePicker';
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 DateTimePicker extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.DateTimePicker';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 }
Please login to merge, or discard this patch.