Skip to content

Commit e1e6b15

Browse files
committed
fixed missing semicolon
1 parent 22a4778 commit e1e6b15

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/targets/php/curl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = function (source, options) {
3737
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)