@@ -214,12 +214,12 @@ |
||
214 | 214 | $options[CURLOPT_HTTPHEADER] = $curlHeaders; |
215 | 215 | |
216 | 216 | // If the Expect header is not present, prevent curl from adding it |
217 | - if (!$this->request->hasHeader('Expect')) { |
|
217 | + if (!$this->request->hasHeader('Expect')){ |
|
218 | 218 | $options[CURLOPT_HTTPHEADER][] = 'Expect:'; |
219 | 219 | } |
220 | 220 | |
221 | 221 | // cURL sometimes adds a content-type by default. Prevent this. |
222 | - if (!$this->request->hasHeader('Content-Type')) { |
|
222 | + if (!$this->request->hasHeader('Content-Type')){ |
|
223 | 223 | $options[CURLOPT_HTTPHEADER][] = 'Content-Type:'; |
224 | 224 | } |
225 | 225 |
@@ -102,9 +102,9 @@ |
||
102 | 102 | $interfaceName = $name.'Interface'; |
103 | 103 | |
104 | 104 | $str = '<?php'.PHP_EOL.PHP_EOL |
105 | - .'namespace '.__NAMESPACE__.';'.PHP_EOL.PHP_EOL |
|
106 | - .'use \\'.$returntype.';'.PHP_EOL.PHP_EOL |
|
107 | - .'interface '.$interfaceName.'{'.PHP_EOL.PHP_EOL; |
|
105 | + .'namespace '.__NAMESPACE__.';'.PHP_EOL.PHP_EOL |
|
106 | + .'use \\'.$returntype.';'.PHP_EOL.PHP_EOL |
|
107 | + .'interface '.$interfaceName.'{'.PHP_EOL.PHP_EOL; |
|
108 | 108 | |
109 | 109 | foreach($this->endpointMap->toArray() as $methodName => $params){ |
110 | 110 |