Skip to content

Commit c93a38d

Browse files
committed
fixed styling conformity issues
1 parent e1e6b15 commit c93a38d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/targets/php/curl.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ module.exports = function (source, options) {
3333
}
3434

3535
if (source.postData) {
36-
if (source.postData.mimeType == 'application/x-www-form-urlencoded') {
37-
code.push('$postData = http_build_query('+helpers.convert(source.postData.paramsObj, opts.indent)+');')
36+
if (source.postData.mimeType === 'application/x-www-form-urlencoded') {
37+
code.push('$postData = http_build_query(' + helpers.convert(source.postData.paramsObj, opts.indent) + ');')
3838
.blank()
3939
} else {
40-
code.push('$postData = "'+source.postData.text+'";')
40+
code.push('$postData = "' + source.postData.text + '";')
4141
.blank()
4242
}
4343
}

0 commit comments

Comments
 (0)