Completed
Pull Request — master (#134)
by
unknown
07:28
created
src/Locator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
      * Create the TimeInTransit request.
87 87
      *
88 88
      * @param LocatorRequest $locatorRequest The request details. Refer to the UPS documentation for available structure
89
-     * @param $requestOption
89
+     * @param integer $requestOption
90 90
      *
91 91
      * @return string
92 92
      */
Please login to merge, or discard this patch.
src/Shipping.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      *
70 70
      * @throws Exception
71 71
      *
72
-     * @return stdClass
72
+     * @return \stdClass
73 73
      */
74 74
     public function confirm(
75 75
         $validation,
Please login to merge, or discard this patch.
src/Tradeability.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -112,14 +112,14 @@
 block discarded – undo
112 112
     /**
113 113
      * Creates and sends a request for the given data. Most errors are handled in SoapRequest
114 114
      *
115
-     * @param $request
116
-     * @param $endpoint
117
-     * @param $operation
118
-     * @param $wsdl
115
+     * @param string $request
116
+     * @param string $endpoint
117
+     * @param string $operation
118
+     * @param string $wsdl
119 119
      *
120 120
      * @throws Exception
121 121
      *
122
-     * @return TimeInTransitRequest
122
+     * @return \stdClass
123 123
      */
124 124
     private function sendRequest($request, $endpoint, $operation, $wsdl)
125 125
     {
Please login to merge, or discard this patch.
src/TimeInTransit.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      *
42 42
      * @throws Exception
43 43
      *
44
-     * @return TimeInTransitRequest
44
+     * @return TimeInTransitResponse
45 45
      */
46 46
     public function getTimeInTransit(TimeInTransitRequest $shipment)
47 47
     {
Please login to merge, or discard this patch.
src/Entity/ShipmentServiceOptions.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     }
167 167
 
168 168
     /**
169
-     * @param $accessPointCOD
169
+     * @param AccessPointCOD $accessPointCOD
170 170
      * @return $this
171 171
      */
172 172
     public function setAccessPointCOD($accessPointCOD)
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
     }
187 187
 
188 188
     /**
189
-     * @return mixed
189
+     * @return InternationalForms
190 190
      */
191 191
     public function getInternationalForms()
192 192
     {
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     }
221 221
 
222 222
     /**
223
-     * @return mixed
223
+     * @return boolean
224 224
      */
225 225
     public function getSaturdayPickup()
226 226
     {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     }
239 239
 
240 240
     /**
241
-     * @return mixed
241
+     * @return boolean
242 242
      */
243 243
     public function getSaturdayDelivery()
244 244
     {
Please login to merge, or discard this patch.