Passed
Pull Request — master (#11)
by
unknown
14:33 queued 04:24
created
src/Core/Response.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -53,11 +53,11 @@
 block discarded – undo
53 53
 	 */
54 54
 	public function getError() : string
55 55
 	{
56
-	    $extendedErrorInfo = isset($this->response->ExtendedErrorInfo) ? (string) $this->response->ExtendedErrorInfo : '';
57
-	    $error = isset($this->response->ErrDesc) ? (string) $this->response->ErrDesc : '';
58
-	    if ($extendedErrorInfo) {
59
-	        $error .= " ($extendedErrorInfo)";
60
-        }
56
+		$extendedErrorInfo = isset($this->response->ExtendedErrorInfo) ? (string) $this->response->ExtendedErrorInfo : '';
57
+		$error = isset($this->response->ErrDesc) ? (string) $this->response->ErrDesc : '';
58
+		if ($extendedErrorInfo) {
59
+			$error .= " ($extendedErrorInfo)";
60
+		}
61 61
 
62 62
 		return $error;
63 63
 	}
Please login to merge, or discard this patch.