Completed
Push — master ( 54e267...8d7cab )
by Marco
02:36
created
src/Comodojo/RpcClient/Traits/Protocol.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
         $proto = strtoupper($protocol);
49 49
 
50
-        if ( !in_array($proto, static::$supported_protocols) ){
50
+        if ( !in_array($proto, static::$supported_protocols) ) {
51 51
             throw new Exception("Invalid RPC protocol");
52 52
         }
53 53
 
Please login to merge, or discard this patch.
src/Comodojo/RpcClient/Processor/XmlProcessor.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -93,11 +93,11 @@  discard block
 block discarded – undo
93 93
 
94 94
         $this->logger->debug("Performing a single XML call");
95 95
 
96
-    	$this->logger->debug("Data dump before encoding", $request->toArray());
96
+        $this->logger->debug("Data dump before encoding", $request->toArray());
97 97
 
98 98
         try {
99 99
 
100
-        	// encoding
100
+            // encoding
101 101
             foreach ( $request->getSpecialTypes() as $key => $value ) {
102 102
 
103 103
                 $this->encoder->setValueType($key, $value);
@@ -129,9 +129,9 @@  discard block
 block discarded – undo
129 129
 
130 130
         $composed_requests = [];
131 131
 
132
-    	$this->logger->debug("Performing an XML multicall");
132
+        $this->logger->debug("Performing an XML multicall");
133 133
 
134
-    	$this->logger->debug("Data dump before encoding", $requests);
134
+        $this->logger->debug("Data dump before encoding", $requests);
135 135
 
136 136
         foreach ($requests as $request) {
137 137
 
Please login to merge, or discard this patch.