Passed
Push — master ( 093a9d...df0ed2 )
by Bruno
01:47
created
Controller/Adminhtml/System/Config/Preference.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -285,6 +285,10 @@  discard block
 block discarded – undo
285 285
     /*
286 286
      * Set Url Webhook Refund
287 287
      */
288
+
289
+    /**
290
+     * @param string $url
291
+     */
288 292
     private function setUrlWebhookRefund($url)
289 293
     {
290 294
         $webhook = [
@@ -299,6 +303,10 @@  discard block
 block discarded – undo
299 303
     /*
300 304
      * Set Url Webhook Cancel
301 305
      */
306
+
307
+    /**
308
+     * @param string $url
309
+     */
302 310
     private function setUrlWebhookCancel($url)
303 311
     {
304 312
         $webhook = [
@@ -313,6 +321,10 @@  discard block
 block discarded – undo
313 321
     /*
314 322
      * Set Url Webhook Capture
315 323
      */
324
+
325
+    /**
326
+     * @param string $url
327
+     */
316 328
     private function setUrlWebhookCapture($url)
317 329
     {
318 330
         $webhook = [
Please login to merge, or discard this patch.
Gateway/Config/Config.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -468,7 +468,6 @@
 block discarded – undo
468 468
     /**
469 469
      * Gets the AddtionalValues.
470 470
      *
471
-     * @param string   $typePattern
472 471
      * @param string   $field
473 472
      * @param int|null $storeId
474 473
      *
Please login to merge, or discard this patch.
Gateway/Config/ConfigBoleto.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     /**
242 242
      * Get if you use document capture on the form.
243 243
      *
244
-     * @return string|null
244
+     * @return boolean
245 245
      */
246 246
     public function getUseTaxDocumentCapture($storeId = null)
247 247
     {
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     /**
258 258
      * Get if you use name capture on the form.
259 259
      *
260
-     * @return string|null
260
+     * @return boolean
261 261
      */
262 262
     public function getUseNameCapture($storeId = null)
263 263
     {
Please login to merge, or discard this patch.
Gateway/Request/DetailTotalsDataRequest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,8 +90,8 @@
 block discarded – undo
90 90
     /**
91 91
      * @param SubjectReader       $subjectReader
92 92
      * @param OrderAdapterFactory $orderAdapterFactory
93
-     * @param Config              $Config
94
-     * @param ConfigCc            $ConfigCc
93
+     * @param Config              $config
94
+     * @param ConfigCc            $configCc
95 95
      * @param CheckoutHelper      $checkoutHelper
96 96
      */
97 97
     public function __construct(
Please login to merge, or discard this patch.
Model/Ui/Vault/ConfigProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     /**
54 54
      * ConfigProvider constructor.
55 55
      *
56
-     * @param Config $config
56
+     * @param Config $configCc
57 57
      */
58 58
     public function __construct(
59 59
         CartInterface $cart,
Please login to merge, or discard this patch.