Passed
Branch dev (e0c5fc)
by Observer
01:25
created
engine/components/system/Timer.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 Timer extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.Timer';
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 Timer extends Control
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.Timer';
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/dialogs/CommonDialog.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
 abstract class CommonDialog extends Component
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.CommonDialog';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+    protected ?string $assembly  = 'System.Windows.Forms';
9 9
 
10 10
     public function execute (): int
11 11
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@
 block discarded – undo
5 5
 abstract class CommonDialog extends Component
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.CommonDialog';
8
-	protected ?string $assembly  = 'System.Windows.Forms';
8
+	protected ?string $assembly = 'System.Windows.Forms';
9 9
 
10
-    public function execute (): int
10
+    public function execute(): int
11 11
     {
12
-        return $this->callMethod ('ShowDialog');
12
+        return $this->callMethod('ShowDialog');
13 13
     }
14 14
 }
Please login to merge, or discard this patch.
engine/components/dialogs/FolderBrowserDialog.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 {
7 7
     protected ?string $classname = 'System.Windows.Forms.FolderBrowserDialog';
8 8
 	
9
-    public function get_path ()
9
+    public function get_path()
10 10
     {
11
-        return $this->getProperty ('SelectedPath');
11
+        return $this->getProperty('SelectedPath');
12 12
     }
13 13
 }
Please login to merge, or discard this patch.
engine/components/dialogs/MessageBox.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.MessageBox';
8 8
     protected ?string $assembly  = 'System.Windows.Forms';
9 9
     
10
-    public function __construct ()
10
+    public function __construct()
11 11
     {
12
-        parent::__construct ($this->classname, $this->assembly);
12
+        parent::__construct($this->classname, $this->assembly);
13 13
     }
14 14
 }
Please login to merge, or discard this patch.