Passed
Push — main ( 42b0c2...e94d6b )
by Sys
09:51
created
src/Types/VoiceChatEnded.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class VoiceChatEnded implements TypeInterface
6 6
 {
7
-	/** @var int */
8
-	public int $duration;
7
+    /** @var int */
8
+    public int $duration;
9 9
 }
Please login to merge, or discard this patch.
src/Types/SuccessfulPayment.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -4,24 +4,24 @@
 block discarded – undo
4 4
 
5 5
 class SuccessfulPayment implements TypeInterface
6 6
 {
7
-	/** @var string */
8
-	public string $currency;
7
+    /** @var string */
8
+    public string $currency;
9 9
 
10
-	/** @var int */
11
-	public int $totalAmount;
10
+    /** @var int */
11
+    public int $totalAmount;
12 12
 
13
-	/** @var string */
14
-	public string $invoicePayload;
13
+    /** @var string */
14
+    public string $invoicePayload;
15 15
 
16
-	/** @var string|null */
17
-	public ?string $shippingOptionId = null;
16
+    /** @var string|null */
17
+    public ?string $shippingOptionId = null;
18 18
 
19
-	/** @var OrderInfo|null */
20
-	public ?OrderInfo $orderInfo = null;
19
+    /** @var OrderInfo|null */
20
+    public ?OrderInfo $orderInfo = null;
21 21
 
22
-	/** @var string */
23
-	public string $telegramPaymentChargeId;
22
+    /** @var string */
23
+    public string $telegramPaymentChargeId;
24 24
 
25
-	/** @var string */
26
-	public string $providerPaymentChargeId;
25
+    /** @var string */
26
+    public string $providerPaymentChargeId;
27 27
 }
Please login to merge, or discard this patch.
src/Types/MaskPosition.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,15 +4,15 @@
 block discarded – undo
4 4
 
5 5
 class MaskPosition implements TypeInterface
6 6
 {
7
-	/** @var string */
8
-	public string $point;
7
+    /** @var string */
8
+    public string $point;
9 9
 
10
-	/** @var float */
11
-	public float $xShift;
10
+    /** @var float */
11
+    public float $xShift;
12 12
 
13
-	/** @var float */
14
-	public float $yShift;
13
+    /** @var float */
14
+    public float $yShift;
15 15
 
16
-	/** @var float */
17
-	public float $scale;
16
+    /** @var float */
17
+    public float $scale;
18 18
 }
Please login to merge, or discard this patch.
src/Types/VoiceChatScheduled.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class VoiceChatScheduled implements TypeInterface
6 6
 {
7
-	/** @var int */
8
-	public int $startDate;
7
+    /** @var int */
8
+    public int $startDate;
9 9
 }
Please login to merge, or discard this patch.
src/Types/ProximityAlertTriggered.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 class ProximityAlertTriggered implements TypeInterface
6 6
 {
7
-	/** @var User */
8
-	public User $traveler;
7
+    /** @var User */
8
+    public User $traveler;
9 9
 
10
-	/** @var User */
11
-	public User $watcher;
10
+    /** @var User */
11
+    public User $watcher;
12 12
 
13
-	/** @var int */
14
-	public int $distance;
13
+    /** @var int */
14
+    public int $distance;
15 15
 }
Please login to merge, or discard this patch.
src/Types/PollAnswer.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 class PollAnswer implements TypeInterface
6 6
 {
7
-	/** @var string */
8
-	public string $pollId;
7
+    /** @var string */
8
+    public string $pollId;
9 9
 
10
-	/** @var User */
11
-	public User $user;
10
+    /** @var User */
11
+    public User $user;
12 12
 
13
-	/** @var Array<int> */
14
-	public array $optionIds;
13
+    /** @var Array<int> */
14
+    public array $optionIds;
15 15
 }
Please login to merge, or discard this patch.
src/Types/VoiceChatParticipantsInvited.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 class VoiceChatParticipantsInvited implements TypeInterface
6 6
 {
7
-	/** @var Array<User>|null */
8
-	public ?array $users = null;
7
+    /** @var Array<User>|null */
8
+    public ?array $users = null;
9 9
 }
Please login to merge, or discard this patch.
src/Types/Poll.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -4,42 +4,42 @@
 block discarded – undo
4 4
 
5 5
 class Poll implements TypeInterface
6 6
 {
7
-	/** @var string */
8
-	public string $id;
7
+    /** @var string */
8
+    public string $id;
9 9
 
10
-	/** @var string */
11
-	public string $question;
10
+    /** @var string */
11
+    public string $question;
12 12
 
13
-	/** @var Array<PollOption> */
14
-	public array $options;
13
+    /** @var Array<PollOption> */
14
+    public array $options;
15 15
 
16
-	/** @var int */
17
-	public int $totalVoterCount;
16
+    /** @var int */
17
+    public int $totalVoterCount;
18 18
 
19
-	/** @var bool */
20
-	public bool $isClosed;
19
+    /** @var bool */
20
+    public bool $isClosed;
21 21
 
22
-	/** @var bool */
23
-	public bool $isAnonymous;
22
+    /** @var bool */
23
+    public bool $isAnonymous;
24 24
 
25
-	/** @var string */
26
-	public string $type;
25
+    /** @var string */
26
+    public string $type;
27 27
 
28
-	/** @var bool */
29
-	public bool $allowsMultipleAnswers;
28
+    /** @var bool */
29
+    public bool $allowsMultipleAnswers;
30 30
 
31
-	/** @var int|null */
32
-	public ?int $correctOptionId = null;
31
+    /** @var int|null */
32
+    public ?int $correctOptionId = null;
33 33
 
34
-	/** @var string|null */
35
-	public ?string $explanation = null;
34
+    /** @var string|null */
35
+    public ?string $explanation = null;
36 36
 
37
-	/** @var Array<MessageEntity>|null */
38
-	public ?array $explanationEntities = null;
37
+    /** @var Array<MessageEntity>|null */
38
+    public ?array $explanationEntities = null;
39 39
 
40
-	/** @var int|null */
41
-	public ?int $openPeriod = null;
40
+    /** @var int|null */
41
+    public ?int $openPeriod = null;
42 42
 
43
-	/** @var int|null */
44
-	public ?int $closeDate = null;
43
+    /** @var int|null */
44
+    public ?int $closeDate = null;
45 45
 }
Please login to merge, or discard this patch.
src/Types/PollOption.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 
5 5
 class PollOption implements TypeInterface
6 6
 {
7
-	/** @var string */
8
-	public string $text;
7
+    /** @var string */
8
+    public string $text;
9 9
 
10
-	/** @var int */
11
-	public int $voterCount;
10
+    /** @var int */
11
+    public int $voterCount;
12 12
 }
Please login to merge, or discard this patch.