Completed
Push — master ( be22ff...83e3a1 )
by Alexander
20s queued 15s
created
src/Types/Payments/ArrayOfLabeledPrice.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
      */
11 11
     public static function fromResponse($data)
12 12
     {
13
-        $arrayOfLabeledPrice = [];
13
+        $arrayOfLabeledPrice = [ ];
14 14
         foreach ($data as $labeledPrice) {
15
-            $arrayOfLabeledPrice[] = LabeledPrice::fromResponse($labeledPrice);
15
+            $arrayOfLabeledPrice[ ] = LabeledPrice::fromResponse($labeledPrice);
16 16
         }
17 17
 
18 18
         return $arrayOfLabeledPrice;
Please login to merge, or discard this patch.
src/Types/SentWebAppMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      *
13 13
      * @var array
14 14
      */
15
-    protected static $requiredParams = [];
15
+    protected static $requiredParams = [ ];
16 16
 
17 17
     /**
18 18
      * {@inheritdoc}
Please login to merge, or discard this patch.
src/Types/WebAppData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      *
13 13
      * @var array
14 14
      */
15
-    protected static $requiredParams = ['data', 'button_text'];
15
+    protected static $requiredParams = [ 'data', 'button_text' ];
16 16
 
17 17
     /**
18 18
      * {@inheritdoc}
Please login to merge, or discard this patch.