Fixed command string for phpcbf fixer

This commit is contained in:
E.J. Sexton 2017-12-01 14:55:34 +01:00
parent 948035e13d
commit 6b3927820b
1 changed files with 1 additions and 1 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