summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorhaginaga <haginaga@unetworks.jp>2018-05-08 23:47:35 +0900
committerhaginaga <haginaga@unetworks.jp>2018-05-08 23:47:35 +0900
commit230656e67895e97b4155e2ceab2271562b2b9090 (patch)
tree2e65cccbd613e6f7dcded43d107ac4d7d891c0c5 /ale_linters
parentffa6fd4bed78ca88d1409b257c201388c7e0b1ae (diff)
downloadale-230656e67895e97b4155e2ceab2271562b2b9090.zip
Fix to follow the Google VimScript Style Guide
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/php/phan.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/php/phan.vim b/ale_linters/php/phan.vim
index 40f5b1ce..0e9ff908 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 is# 'phan'
let l:executable = 'phan_client'
endif