Passed
Push — main ( 01c183...6b17f2 )
by Miaad
12:38 queued 10:54
created
src/types/chatMember.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -18,64 +18,64 @@  discard block
 block discarded – undo
18 18
     public user $user;
19 19
 
20 20
     /** `creator` and `administrator` only. True, if the user's presence in the chat is hidden */
21
-    public null|bool $is_anonymous = null;
21
+    public null | bool $is_anonymous = null;
22 22
 
23 23
     /** `creator` and `administrator` only. Custom title for this user */
24
-    public null|string $custom_title = null;
24
+    public null | string $custom_title = null;
25 25
 
26 26
     /** `administrator` only. True, if the bot is allowed to edit administrator privileges of that user */
27
-    public null|bool $can_be_edited = null;
27
+    public null | bool $can_be_edited = null;
28 28
 
29 29
     /**
30 30
      * `administrator` only. True, if the administrator can access the chat event log, chat statistics, message statistics in
31 31
      * channels, see channel members, see anonymous administrators in supergroups and ignore slow mode. Implied by any other
32 32
      * administrator privilege
33 33
      */
34
-    public null|bool $can_manage_chat = null;
34
+    public null | bool $can_manage_chat = null;
35 35
 
36 36
     /** `administrator` only. True, if the administrator can delete messages of other users */
37
-    public null|bool $can_delete_messages = null;
37
+    public null | bool $can_delete_messages = null;
38 38
 
39 39
     /** `administrator` only. True, if the administrator can manage video chats */
40
-    public null|bool $can_manage_video_chats = null;
40
+    public null | bool $can_manage_video_chats = null;
41 41
 
42 42
     /** `administrator` only. True, if the administrator can restrict, ban or unban chat members */
43
-    public null|bool $can_restrict_members = null;
43
+    public null | bool $can_restrict_members = null;
44 44
 
45 45
     /**
46 46
      * `administrator` only. if the administrator can add new administrators with a subset of their own privileges or demote
47 47
      * administrators that he has promoted, directly or indirectly (promoted by administrators that were appointed by
48 48
      * the user)
49 49
      */
50
-    public null|bool $can_promote_members = null;
50
+    public null | bool $can_promote_members = null;
51 51
 
52 52
     /** `administrator` and `restricted` only. True, if the user is allowed to change the chat title, photo and other settings */
53
-    public null|bool $can_change_info = null;
53
+    public null | bool $can_change_info = null;
54 54
 
55 55
     /** `administrator` and `restricted` only. True, if the user is allowed to invite new users to the chat */
56
-    public null|bool $can_invite_users = null;
56
+    public null | bool $can_invite_users = null;
57 57
 
58 58
     /** `administrator` only. Optional. True, if the administrator can post in the channel; channels only */
59
-    public null|bool $can_post_messages = null;
59
+    public null | bool $can_post_messages = null;
60 60
 
61 61
     /** `administrator` only. Optional. True, if the administrator can edit messages of other users and can pin messages; channels only */
62
-    public null|bool $can_edit_messages = null;
62
+    public null | bool $can_edit_messages = null;
63 63
 
64 64
     /** `administrator` and `restricted` only. Optional. True, if the user is allowed to pin messages; groups and supergroups only */
65
-    public null|bool $can_pin_messages = null;
65
+    public null | bool $can_pin_messages = null;
66 66
 
67 67
     /**
68 68
      * `administrator` : Optional. True, if the user is allowed to create, rename, close, and reopen forum topics; supergroups only
69 69
      *
70 70
      * `restricted` : True, if the user is allowed to create forum topics
71 71
      */
72
-    public null|bool $can_manage_topics = null;
72
+    public null | bool $can_manage_topics = null;
73 73
 
74 74
     /** `restricted` only. True, if the user is a member of the chat at the moment of the request */
75
-    public null|bool $is_member = null;
75
+    public null | bool $is_member = null;
76 76
 
77 77
     /** `restricted` only. True, if the user is allowed to send text messages, contacts, locations and venues */
78
-    public null|bool $can_send_messages = null;
78
+    public null | bool $can_send_messages = null;
79 79
 
80 80
     /** `restricted` only. Optional. True, if the user is allowed to send audios */
81 81
     public bool $can_send_audios;
@@ -96,16 +96,16 @@  discard block
 block discarded – undo
96 96
     public bool $can_send_voice_notes;
97 97
 
98 98
     /** `restricted` only. True, if the user is allowed to send polls */
99
-    public null|bool $can_send_polls = null;
99
+    public null | bool $can_send_polls = null;
100 100
 
101 101
     /** `restricted` only. True, if the user is allowed to send animations, games, stickers and use inline bots */
102
-    public null|bool $can_send_other_messages = null;
102
+    public null | bool $can_send_other_messages = null;
103 103
 
104 104
     /** `restricted` only. True, if the user is allowed to add web page previews to their messages */
105
-    public null|bool $can_add_web_page_previews = null;
105
+    public null | bool $can_add_web_page_previews = null;
106 106
 
107 107
     /** `kicked` and `restricted` only. Date when restrictions will be lifted for this user; unix time. If 0, then the user is restricted forever */
108
-    public null|int $until_date = null;
108
+    public null | int $until_date = null;
109 109
 
110 110
 
111 111
     public function __construct(stdClass $object) {
Please login to merge, or discard this patch.
src/types/userShared.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     public int $user_id;
22 22
 
23 23
 
24
-    public function __construct(stdClass|null $object = null) {
24
+    public function __construct(stdClass | null $object = null) {
25 25
         if ($object != null) {
26 26
             parent::__construct($object, self::subs);
27 27
         }
Please login to merge, or discard this patch.
src/types/chatShared.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public int $chat_id;
19 19
 
20 20
 
21
-    public function __construct(stdClass|null $object = null) {
21
+    public function __construct(stdClass | null $object = null) {
22 22
         if ($object != null) {
23 23
             parent::__construct($object, self::subs);
24 24
         }
Please login to merge, or discard this patch.
src/types/keyboardButtonRequestUser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public bool $user_is_premium;
29 29
 
30 30
 
31
-    public function __construct(stdClass|null $object = null) {
31
+    public function __construct(stdClass | null $object = null) {
32 32
         if ($object != null) {
33 33
             parent::__construct($object, self::subs);
34 34
         }
Please login to merge, or discard this patch.
src/types/keyboardButtonRequestChat.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     public bool $bot_is_member;
57 57
 
58 58
 
59
-    public function __construct(stdClass|null $object = null) {
59
+    public function __construct(stdClass | null $object = null) {
60 60
         if ($object != null) {
61 61
             parent::__construct($object, self::subs);
62 62
         }
Please login to merge, or discard this patch.