summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-08-21 18:42:18 +0100
committerw0rp <devw0rp@gmail.com>2017-08-21 18:42:18 +0100
commita3299bf03a405207347d8d06c28b65af1e0a5092 (patch)
tree67f072993f1e549589797d64a4b4974cc0002044 /ale_linters
parentcc02eb8a5a0e40e23ae5e3cc2a4e92f0353d30b5 (diff)
downloadale-a3299bf03a405207347d8d06c28b65af1e0a5092.zip
Fix #864 - Use the user's configured executable for phpstan for executable() checks
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/php/phpstan.vim10
1 files changed, 8 insertions, 2 deletions
diff --git a/ale_linters/php/phpstan.vim b/ale_linters/php/phpstan.vim
index 69173ef4..b99e4f58 100644
--- a/ale_linters/php/phpstan.vim
+++ b/ale_linters/php/phpstan.vim
@@ -5,8 +5,14 @@
let g:ale_php_phpstan_executable = get(g:, 'ale_php_phpstan_executable', 'phpstan')
let g:ale_php_phpstan_level = get(g:, 'ale_php_phpstan_level', '4')
-function! ale_linters#php#phpstan#GetCommand(buffer) abort
+function! ale_linters#php#phpstan#GetExecutable(buffer) abort
return ale#Var(a:buffer, 'php_phpstan_executable')
+endfunction
+
+function! ale_linters#php#phpstan#GetCommand(buffer) abort
+ let l:executable = ale_linters#php#phpstan#GetExecutable(a:buffer)
+
+ return ale#Escape(l:executable)
\ . ' analyze -l'
\ . ale#Var(a:buffer, 'php_phpstan_level')
\ . ' --errorFormat raw'
@@ -34,7 +40,7 @@ endfunction
call ale#linter#Define('php', {
\ 'name': 'phpstan',
-\ 'executable': 'phpstan',
+\ 'executable_callback': 'ale_linters#php#phpstan#GetExecutable',
\ 'command_callback': 'ale_linters#php#phpstan#GetCommand',
\ 'callback': 'ale_linters#php#phpstan#Handle',
\})