diff options
author | jwilliams108 <jwilliams108@hotmail.com> | 2016-10-07 11:03:19 +1100 |
---|---|---|
committer | jwilliams108 <jwilliams108@hotmail.com> | 2016-10-07 11:14:52 +1100 |
commit | a14790f6ca77feed07c1377b8539b16b31bde124 (patch) | |
tree | f30e5096c70ed46ca3d3ce605ce31fdcd41252cc /ale_linters/php | |
parent | c5d3cc5bc7e7d31834b58c0422cd9fe4c5b616a2 (diff) | |
download | ale-a14790f6ca77feed07c1377b8539b16b31bde124.zip |
updating config option format and adding to doc
Diffstat (limited to 'ale_linters/php')
-rw-r--r-- | ale_linters/php/phpcs.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/php/phpcs.vim b/ale_linters/php/phpcs.vim index 62517c92..db7598fa 100644 --- a/ale_linters/php/phpcs.vim +++ b/ale_linters/php/phpcs.vim @@ -11,8 +11,8 @@ function! ale_linters#php#phpcs#GetCommand(buffer) let command = 'phpcs -s --report=emacs --stdin-path=%s' " This option can be set to change the standard used by phpcs - if exists('g:ale_linters_php_phpcs_standard') - let command .= ' --standard=' . g:ale_linters_php_phpcs_standard + if exists('g:ale_php_phpcs_standard') + let command .= ' --standard=' . g:ale_php_phpcs_standard endif return command |