diff options
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 ce5cadcb..c6f16356 100644 --- a/ale_linters/php/phan.vim +++ b/ale_linters/php/phan.vim @@ -45,7 +45,7 @@ function! ale_linters#php#phan#Handle(buffer, lines) abort let l:output = [] for l:match in ale#util#GetMatches(a:lines, l:pattern) - if ale#Var('php_phan_use_client') == 1 + if ale#Var(a:buffer, 'php_phan_use_client') == 1 let l:dict = { \ 'lnum': l:match[4] + 0, \ 'text': l:match[2], |