Passed
Push — master ( d686b8...2ab801 )
by Shahrad
02:31
created
src/lib/Entities/VideoNote.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@
 block discarded – undo
20 20
 class VideoNote extends Entity
21 21
 {
22 22
 
23
-	/**
24
-	 * {@inheritdoc}
25
-	 */
26
-	protected function subEntities(): array
27
-	{
28
-		return [
29
-			'thumb' => PhotoSize::class,
30
-		];
31
-	}
23
+    /**
24
+     * {@inheritdoc}
25
+     */
26
+    protected function subEntities(): array
27
+    {
28
+        return [
29
+            'thumb' => PhotoSize::class,
30
+        ];
31
+    }
32 32
 
33 33
 }
Please login to merge, or discard this patch.
src/lib/Entities/Venue.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
 class Venue extends Entity
22 22
 {
23 23
 
24
-	/**
25
-	 * {@inheritdoc}
26
-	 */
27
-	protected function subEntities(): array
28
-	{
29
-		return [
30
-			'location' => Location::class,
31
-		];
32
-	}
24
+    /**
25
+     * {@inheritdoc}
26
+     */
27
+    protected function subEntities(): array
28
+    {
29
+        return [
30
+            'location' => Location::class,
31
+        ];
32
+    }
33 33
 
34 34
 }
Please login to merge, or discard this patch.
src/lib/Entities/ChatJoinRequest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@
 block discarded – undo
20 20
 class ChatJoinRequest extends Entity
21 21
 {
22 22
 
23
-	/**
24
-	 * {@inheritdoc}
25
-	 */
23
+    /**
24
+     * {@inheritdoc}
25
+     */
26 26
     protected function subEntities(): array
27 27
     {
28 28
         return [
Please login to merge, or discard this patch.
src/lib/Entities/Video.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@
 block discarded – undo
23 23
 class Video extends Entity
24 24
 {
25 25
 
26
-	/**
27
-	 * {@inheritdoc}
28
-	 */
29
-	protected function subEntities(): array
30
-	{
31
-		return [
32
-			'thumb' => PhotoSize::class,
33
-		];
34
-	}
26
+    /**
27
+     * {@inheritdoc}
28
+     */
29
+    protected function subEntities(): array
30
+    {
31
+        return [
32
+            'thumb' => PhotoSize::class,
33
+        ];
34
+    }
35 35
 
36 36
 }
Please login to merge, or discard this patch.
src/lib/Entities/ChatLocation.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -17,14 +17,14 @@
 block discarded – undo
17 17
 class ChatLocation extends Entity
18 18
 {
19 19
 
20
-	/**
21
-	 * {@inheritdoc}
22
-	 */
23
-	protected function subEntities(): array
24
-	{
25
-		return [
26
-			'location' => Location::class,
27
-		];
28
-	}
20
+    /**
21
+     * {@inheritdoc}
22
+     */
23
+    protected function subEntities(): array
24
+    {
25
+        return [
26
+            'location' => Location::class,
27
+        ];
28
+    }
29 29
 
30 30
 }
Please login to merge, or discard this patch.
src/lib/Entities/VoiceChatParticipantsInvited.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
 class VoiceChatParticipantsInvited extends Entity
17 17
 {
18 18
 
19
-	/**
20
-	 * {@inheritdoc}
21
-	 */
22
-	protected function subEntities(): array
23
-	{
24
-		return [
25
-			'users' => [User::class],
26
-		];
27
-	}
19
+    /**
20
+     * {@inheritdoc}
21
+     */
22
+    protected function subEntities(): array
23
+    {
24
+        return [
25
+            'users' => [User::class],
26
+        ];
27
+    }
28 28
 
29 29
 }
Please login to merge, or discard this patch.