Passed
Pull Request — master (#431)
by Alexander
02:12
created
src/Types/Inline/QueryResult/Contact.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
      *
19 19
      * @var array
20 20
      */
21
-    protected static $requiredParams = ['type', 'id', 'phone_number', 'first_name'];
21
+    protected static $requiredParams = [ 'type', 'id', 'phone_number', 'first_name' ];
22 22
 
23 23
     /**
24 24
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/Inline/QueryResult/Audio.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      *
30 30
      * @var array
31 31
      */
32
-    protected static $requiredParams = ['type', 'id', 'audio_url', 'title'];
32
+    protected static $requiredParams = [ 'type', 'id', 'audio_url', 'title' ];
33 33
 
34 34
     /**
35 35
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/Inline/QueryResult/Mpeg4Gif.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      *
21 21
      * @var array
22 22
      */
23
-    protected static $requiredParams = ['type', 'id', 'mpeg4_url', 'thumb_url'];
23
+    protected static $requiredParams = [ 'type', 'id', 'mpeg4_url', 'thumb_url' ];
24 24
 
25 25
     /**
26 26
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/Inline/QueryResult/Venue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      *
30 30
      * @var array
31 31
      */
32
-    protected static $requiredParams = ['type', 'id', 'latitude', 'longitude', 'title', 'address'];
32
+    protected static $requiredParams = [ 'type', 'id', 'latitude', 'longitude', 'title', 'address' ];
33 33
 
34 34
     /**
35 35
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/Inline/QueryResult/Gif.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      *
21 21
      * @var array
22 22
      */
23
-    protected static $requiredParams = ['type', 'id', 'gif_url', 'thumb_url'];
23
+    protected static $requiredParams = [ 'type', 'id', 'gif_url', 'thumb_url' ];
24 24
 
25 25
     /**
26 26
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/Inline/QueryResult/Voice.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      *
30 30
      * @var array
31 31
      */
32
-    protected static $requiredParams = ['type', 'id', 'voice_url', 'title'];
32
+    protected static $requiredParams = [ 'type', 'id', 'voice_url', 'title' ];
33 33
 
34 34
     /**
35 35
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/Inline/QueryResult/Article.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
      *
19 19
      * @var array
20 20
      */
21
-    protected static $requiredParams = ['type', 'id', 'title', 'input_message_content'];
21
+    protected static $requiredParams = [ 'type', 'id', 'title', 'input_message_content' ];
22 22
 
23 23
     /**
24 24
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/Inline/InlineQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      *
21 21
      * @var array
22 22
      */
23
-    protected static $requiredParams = ['id', 'from', 'query', 'offset'];
23
+    protected static $requiredParams = [ 'id', 'from', 'query', 'offset' ];
24 24
 
25 25
     /**
26 26
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/Inline/InlineKeyboardMarkup.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      *
18 18
      * @var array
19 19
      */
20
-    protected static $requiredParams = ['inline_keyboard'];
20
+    protected static $requiredParams = [ 'inline_keyboard' ];
21 21
 
22 22
     /**
23 23
      * {@inheritdoc}
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * @param array $inlineKeyboard
41 41
      */
42
-    public function __construct($inlineKeyboard = [])
42
+    public function __construct($inlineKeyboard = [ ])
43 43
     {
44 44
         $this->inlineKeyboard = $inlineKeyboard;
45 45
     }
Please login to merge, or discard this patch.