Merge pull request #1188 from ejsexton82/master

Fixed Command String for phpcbf Fixer
This commit is contained in:
w0rp
2017-12-02 12:25:13 +00:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -19,6 +19,6 @@ function! ale#fixers#phpcbf#Fix(buffer) abort
\ ? '--standard=' . l:standard
\ : ''
return {
\ 'command': ale#Escape(l:executable) . ' --stdin-path=%s ' . l:standard_option
\ 'command': ale#Escape(l:executable) . ' --stdin-path=%s ' . l:standard_option . ' -'
\}
endfunction