Completed
Push — master ( 09b651...3aad06 )
by Stefan
06:44 queued 02:46
created
src/Rate.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      *
42 42
      * @throws Exception
43 43
      *
44
-     * @return RateRequest
44
+     * @return RateResponse
45 45
      */
46 46
     public function shopRates($rateRequest)
47 47
     {
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @throws Exception
63 63
      *
64
-     * @return RateRequest
64
+     * @return RateResponse
65 65
      */
66 66
     public function getRate($rateRequest)
67 67
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      *
85 85
      * @throws Exception
86 86
      *
87
-     * @return RateRequest
87
+     * @return RateResponse
88 88
      */
89 89
     private function sendRequest(RateRequest $rateRequest)
90 90
     {
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
      *
197 197
      * @param SimpleXMLElement $response
198 198
      *
199
-     * @return stdClass
199
+     * @return RateResponse
200 200
      */
201 201
     private function formatResponse(SimpleXMLElement $response)
202 202
     {
Please login to merge, or discard this patch.
src/Entity/AlternateDeliveryAddress.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @return mixed
50
+     * @return string|null
51 51
      */
52 52
     public function getCode()
53 53
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @return mixed
66
+     * @return string|null
67 67
      */
68 68
     public function getDescription()
69 69
     {
Please login to merge, or discard this patch.
src/Entity/Discount.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @return mixed
40
+     * @return double
41 41
      */
42 42
     public function getMonetaryValue()
43 43
     {
Please login to merge, or discard this patch.
src/Entity/GeoCode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @return mixed
50
+     * @return string|null
51 51
      */
52 52
     public function getCode()
53 53
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @return mixed
66
+     * @return string|null
67 67
      */
68 68
     public function getDescription()
69 69
     {
Please login to merge, or discard this patch.
src/Entity/InvoiceLineTotal.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
         $this->weight = $weight;
49 49
     }
50 50
 
51
+    /**
52
+     * @return string|null
53
+     */
51 54
     public function getWeight()
52 55
     {
53 56
         return $this->weight;
Please login to merge, or discard this patch.
src/Entity/Notification.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
 
41 41
     /**
42
-     * @return mixed
42
+     * @return string|null
43 43
      */
44 44
     public function getCurrencyCode()
45 45
     {
Please login to merge, or discard this patch.