Passed
Branch master (7a7cfe)
by Fabian
45:14
created
Ratepay/src/Spryker/Zed/Ratepay/Business/Api/Model/RequestModelFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * @param string $modelType
31 31
      *
32
-     * @return \Spryker\Zed\Ratepay\Business\Api\Model\RequestInterface
32
+     * @return callable
33 33
      */
34 34
     public function build($modelType)
35 35
     {
Please login to merge, or discard this patch.
src/Spryker/Zed/Ratepay/Business/Request/Payment/Method/AbstractMethod.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use Generated\Shared\Transfer\OrderTransfer;
11 11
 use Generated\Shared\Transfer\RatepayPaymentInitTransfer;
12 12
 use Generated\Shared\Transfer\RatepayPaymentRequestTransfer;
13
-use Spryker\Zed\Ratepay\Business\Api\Constants;
14 13
 use Spryker\Zed\Ratepay\Business\Api\Constants as ApiConstants;
15 14
 use Spryker\Zed\Ratepay\Business\Api\Mapper\MapperFactory;
16 15
 use Spryker\Zed\Ratepay\Business\Api\Model\RequestModelFactoryInterface;
Please login to merge, or discard this patch.
Ratepay/Business/Request/Service/Handler/Transaction/ProfileTransaction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     /**
40 40
      * @param string $request
41 41
      *
42
-     * @return \Spryker\Zed\Ratepay\Business\Api\Model\Response\BaseResponse
42
+     * @return \Spryker\Zed\Ratepay\Business\Api\Model\Response\ResponseInterface
43 43
      */
44 44
     protected function sendRequest($request)
45 45
     {
Please login to merge, or discard this patch.
SprykerTest/Zed/Ratepay/Business/Api/Adapter/Http/AbstractAdapterMock.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @param array|string $data
46
+     * @param string $data
47 47
      *
48 48
      * @return string
49 49
      */
@@ -59,12 +59,12 @@  discard block
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-     * @return array
62
+     * @return string
63 63
      */
64 64
     abstract public function getSuccessResponse();
65 65
 
66 66
     /**
67
-     * @return array
67
+     * @return string
68 68
      */
69 69
     abstract public function getFailureResponse();
70 70
 
Please login to merge, or discard this patch.
SprykerTest/Zed/Ratepay/Business/Api/Adapter/Http/CancelAdapterMock.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-     * @return array
13
+     * @return string
14 14
      */
15 15
     public function getSuccessResponse()
16 16
     {
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     }
37 37
 
38 38
     /**
39
-     * @return array
39
+     * @return string
40 40
      */
41 41
     public function getFailureResponse()
42 42
     {
Please login to merge, or discard this patch.
Zed/Ratepay/Business/Api/Adapter/Http/ConfirmDeliveryAdapterMock.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-     * @return array
13
+     * @return string
14 14
      */
15 15
     public function getSuccessResponse()
16 16
     {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @return array
37
+     * @return string
38 38
      */
39 39
     public function getFailureResponse()
40 40
     {
Please login to merge, or discard this patch.
Zed/Ratepay/Business/Api/Adapter/Http/ConfirmPaymentAdapterMock.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-     * @return array
13
+     * @return string
14 14
      */
15 15
     public function getSuccessResponse()
16 16
     {
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     }
37 37
 
38 38
     /**
39
-     * @return array
39
+     * @return string
40 40
      */
41 41
     public function getFailureResponse()
42 42
     {
Please login to merge, or discard this patch.
tests/SprykerTest/Zed/Ratepay/Business/Api/Adapter/Http/InitAdapterMock.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-     * @return array
13
+     * @return string
14 14
      */
15 15
     public function getSuccessResponse()
16 16
     {
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @return array
36
+     * @return string
37 37
      */
38 38
     public function getFailureResponse()
39 39
     {
Please login to merge, or discard this patch.
SprykerTest/Zed/Ratepay/Business/Api/Adapter/Http/ProfileAdapterMock.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
 
12 12
     /**
13
-     * @return array
13
+     * @return string
14 14
      */
15 15
     public function getSuccessResponse()
16 16
     {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     }
101 101
 
102 102
     /**
103
-     * @return array
103
+     * @return string
104 104
      */
105 105
     public function getFailureResponse()
106 106
     {
Please login to merge, or discard this patch.