diff options
author | haginaga <haginaga@unetworks.jp> | 2018-05-08 23:35:14 +0900 |
---|---|---|
committer | haginaga <haginaga@unetworks.jp> | 2018-05-08 23:35:14 +0900 |
commit | ffa6fd4bed78ca88d1409b257c201388c7e0b1ae (patch) | |
tree | 3d674d1f721b9a03d724590d1822fd20a00e4eaa /ale_linters/php/phan.vim | |
parent | eb3ab87569c6a6f40c98aa4de0ab710914421fbd (diff) | |
download | ale-ffa6fd4bed78ca88d1409b257c201388c7e0b1ae.zip |
Fix to follow the Google VimScript Style Guide
Diffstat (limited to 'ale_linters/php/phan.vim')
-rw-r--r-- | ale_linters/php/phan.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/php/phan.vim b/ale_linters/php/phan.vim index 2723e7a1..40f5b1ce 100644 --- a/ale_linters/php/phan.vim +++ b/ale_linters/php/phan.vim @@ -9,7 +9,7 @@ let g:ale_php_phan_use_client = get(g:, 'ale_php_phan_use_client', 0) function! ale_linters#php#phan#GetExecutable(buffer) abort let l:executable = ale#Var(a:buffer, 'php_phan_executable') - if g:ale_php_phan_use_client == 1 && l:executable == 'phan' + if g:ale_php_phan_use_client == 1 && l:executable ==# 'phan' let l:executable = 'phan_client' endif |