Completed
Pull Request — master (#5)
by Ravan
01:59 queued 33s
created
src/Request.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * Flagging the quotation elected to Axado API.
70 70
      *
71
-     * @param  AxadoShipping $shipping
72
-     * @param  string $token
71
+     * @param  Shipping $shipping
72
+     * @param string $quotationToken
73 73
      * @return null
74 74
      */
75 75
     public function flagAsContracted(\Axado\Shipping $shipping, $quotationToken)
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      * @param string $path
94 94
      * @param string $data
95 95
      *
96
-     * @return array
96
+     * @return string
97 97
      */
98 98
     protected function doRequest($method, $path, $data)
99 99
     {
Please login to merge, or discard this patch.
src/Shipping.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * Get the first quotation and return the price.
116 116
      *
117
-     * @return integer
117
+     * @return null|string
118 118
      */
119 119
     public function getCosts()
120 120
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * Get the first quotation and return the price.
132 132
      *
133
-     * @return integer
133
+     * @return null|string
134 134
      */
135 135
     public function getDeadline()
136 136
     {
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
     /**
212 212
      * Getter to Total price of sale.
213 213
      *
214
-     * @param float $price
214
+     * @return string
215 215
      */
216 216
     public function getTotalPrice()
217 217
     {
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
     /**
222 222
      * Getter to of aditional price.
223 223
      *
224
-     * @param float $price
224
+     * @return double
225 225
      */
226 226
     public function getAditionalPrice()
227 227
     {
Please login to merge, or discard this patch.