Completed
Push — develop ( 384aa2...b71e24 )
by Dieter
46:17 queued 33:46
created
src/Amadeus/Client/Struct/Queue/Scroll.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 class Scroll
32 32
 {
33 33
     /**
34
-    * @var NumberOfItemsDetails
35
-    */
34
+     * @var NumberOfItemsDetails
35
+     */
36 36
     public $numberOfItemsDetails;
37 37
 }
Please login to merge, or discard this patch.
src/Amadeus/Client/SoapClient.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
     {
92 92
         $newRequest = null;
93 93
 
94
-        $xsltFile = dirname(__FILE__) . DIRECTORY_SEPARATOR . self::REMOVE_EMPTY_XSLT_LOCATION;
94
+        $xsltFile = dirname(__FILE__).DIRECTORY_SEPARATOR.self::REMOVE_EMPTY_XSLT_LOCATION;
95 95
         if (!is_readable($xsltFile)) {
96
-            throw new Exception('XSLT file "' . $xsltFile . '" is not readable!');
96
+            throw new Exception('XSLT file "'.$xsltFile.'" is not readable!');
97 97
         }
98 98
 
99 99
         $dom = new \DOMDocument('1.0', 'UTF-8');
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         if ($transform === false) {
109 109
             $this->logger->log(
110 110
                 Log\LogLevel::ERROR,
111
-                __METHOD__ . "__doRequest(): XSLTProcessor::transformToXml "
111
+                __METHOD__."__doRequest(): XSLTProcessor::transformToXml "
112 112
                 . "returned FALSE: could not perform transformation!!"
113 113
             );
114 114
             $newRequest = $request;
Please login to merge, or discard this patch.
src/Amadeus/Client/ResponseHandler/Base.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function analyzeResponse($sendResult, $messageName)
56 56
     {
57
-        $methodName = 'analyze' . str_replace('_', '', ucfirst($messageName)) . 'Response';
57
+        $methodName = 'analyze'.str_replace('_', '', ucfirst($messageName)).'Response';
58 58
 
59 59
         if (!empty($sendResult->exception)) {
60 60
             return $this->makeResultForException($sendResult);
@@ -825,7 +825,7 @@  discard block
 block discarded – undo
825 825
         $errorMessage = (array_key_exists($errorCode, $recognizedErrors)) ? $recognizedErrors[$errorCode] : '';
826 826
 
827 827
         if ($errorMessage === '') {
828
-            $errorMessage = "QUEUE ERROR '" . $errorCode . "' (Error message unavailable)";
828
+            $errorMessage = "QUEUE ERROR '".$errorCode."' (Error message unavailable)";
829 829
         }
830 830
 
831 831
         return $errorMessage;
@@ -915,7 +915,7 @@  discard block
 block discarded – undo
915 915
         return implode(
916 916
             ' - ',
917 917
             array_map(
918
-                function ($item) {
918
+                function($item) {
919 919
                     return trim($item->nodeValue);
920 920
                 },
921 921
                 iterator_to_array($errorTextNodeList)
Please login to merge, or discard this patch.