Fix to follow the Google VimScript Style Guide

This commit is contained in:
haginaga 2018-05-08 23:35:14 +09:00
parent eb3ab87569
commit ffa6fd4bed
1 changed files with 1 additions and 1 deletions

View File

@ -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