Passed
Push — main ( e011f6...018447 )
by Miaad
01:44
created
types/types.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@
 block discarded – undo
26 26
                                 $this->$key[$sub_key][] = new ($subs['array']['array'][$key]) ($sub2_value);
27 27
                             }
28 28
                         }
29
-                        else{
29
+                        else {
30 30
                             $this->$key[] = new ($subs['array'][$key]) ($sub_value);
31 31
                         }
32 32
                     }
33 33
                 }
34
-                else{
34
+                else {
35 35
                     $this->$key = $value;
36 36
                     if (ucfirst($key) === basename(get_class($this)).'_id') {
37 37
                         $this->{'id'} = $value;
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,21 +17,18 @@
 block discarded – undo
17 17
         foreach ($object as $key=>$value) {
18 18
             if (isset($subs[$key])) {
19 19
                 $this->$key = new ($subs[$key]) ($value);
20
-            }
21
-            else {
20
+            } else {
22 21
                 if (is_array($value)) {
23 22
                     foreach ($value as $sub_key=>$sub_value) {
24 23
                         if (is_array($sub_value)) {
25 24
                             foreach ($sub_value as $sub2_value) {
26 25
                                 $this->$key[$sub_key][] = new ($subs['array']['array'][$key]) ($sub2_value);
27 26
                             }
28
-                        }
29
-                        else{
27
+                        } else{
30 28
                             $this->$key[] = new ($subs['array'][$key]) ($sub_value);
31 29
                         }
32 30
                     }
33
-                }
34
-                else{
31
+                } else{
35 32
                     $this->$key = $value;
36 33
                     if (ucfirst($key) === basename(get_class($this)).'_id') {
37 34
                         $this->{'id'} = $value;
Please login to merge, or discard this patch.
types/message.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -139,13 +139,13 @@
 block discarded – undo
139 139
     public string $text;
140 140
 
141 141
     /** Optional. If user message was a commend , this parameter will be the commend */
142
-    public string|null $commend;
142
+    public string | null $commend;
143 143
 
144 144
     /** Optional. If user message was a commend , this parameter will be the commend username(if exist) */
145
-    public string|null $commend_username;
145
+    public string | null $commend_username;
146 146
 
147 147
     /** Optional. If user message was a commend , this parameter will be the commend payload(if exist) */
148
-    public string|null $commend_payload;
148
+    public string | null $commend_payload;
149 149
 
150 150
     /**
151 151
      * Optional. For text messages, special entities like usernames, URLs, bot commands, etc. that appear in the text
Please login to merge, or discard this patch.