Passed
Push — master ( f4dfed...a8b79e )
by Dieter
07:58
created
src/Amadeus/Client/Session/Handler/Base.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      * @param string $messageName
239 239
      * @param string $lastResponse
240 240
      * @param array $messageOptions
241
-     * @param mixed $result
241
+     * @param SendResult $result
242 242
      */
243 243
     abstract protected function handlePostMessage($messageName, $lastResponse, $messageOptions, $result);
244 244
 
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
     /**
328 328
      * Get the version number active in the WSDL for the given message
329 329
      *
330
-     * @param $messageName
330
+     * @param string $messageName
331 331
      * @return float|string|null
332 332
      */
333 333
     protected function getActiveVersionFor($messageName)
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
     /**
347 347
      * Get the WSDL ID for the given message
348 348
      *
349
-     * @param $messageName
349
+     * @param string $messageName
350 350
      * @return string|null
351 351
      */
352 352
     protected function getWsdlIdFor($messageName)
Please login to merge, or discard this patch.
src/Amadeus/Client/Util/MsgBodyExtractor.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * Extracts the message content from the soap envelope (i.e. everything under the soap body)
35 35
      *
36 36
      * @param string $soapResponse
37
-     * @return string|null
37
+     * @return boolean|string
38 38
      */
39 39
     public function extract($soapResponse)
40 40
     {
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * Get substring between two strings
54 54
      *
55
-     * @param $string
56
-     * @param $start
57
-     * @param $end
55
+     * @param string $string
56
+     * @param string $start
57
+     * @param string $end
58 58
      * @return bool|string
59 59
      */
60 60
     private function getStringBetween($string, $start, $end)
Please login to merge, or discard this patch.