Completed
Pull Request — master (#3)
by Carlos C
03:14
created
src/Psr18/CurlHandle.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,9 +119,9 @@
 block discarded – undo
119 119
 			\CURLOPT_HEADERFUNCTION => [$this, 'headerfunction'],
120 120
 		];
121 121
 		if ($this->options->ca_info) {
122
-            $options[\CURLOPT_CAINFO] = $this->options->ca_info;
122
+			$options[\CURLOPT_CAINFO] = $this->options->ca_info;
123 123
 		}
124
-        return $options;
124
+		return $options;
125 125
 	}
126 126
 
127 127
 	/**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
 			\CURLOPT_WRITEFUNCTION  => [$this, 'writefunction'],
119 119
 			\CURLOPT_HEADERFUNCTION => [$this, 'headerfunction'],
120 120
 		];
121
-		if ($this->options->ca_info) {
121
+		if($this->options->ca_info){
122 122
             $options[\CURLOPT_CAINFO] = $this->options->ca_info;
123 123
 		}
124 124
         return $options;
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
 			\CURLOPT_WRITEFUNCTION  => [$this, 'writefunction'],
119 119
 			\CURLOPT_HEADERFUNCTION => [$this, 'headerfunction'],
120 120
 		];
121
-		if ($this->options->ca_info) {
121
+		if ($this->options->ca_info){
122 122
             $options[\CURLOPT_CAINFO] = $this->options->ca_info;
123 123
 		}
124 124
         return $options;
Please login to merge, or discard this patch.