diff options
author | Horacio Sanson <hsanson@gmail.com> | 2021-02-05 23:02:47 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 23:02:47 +0900 |
commit | 787ab2a36684838698a0173f29e82715420f117c (patch) | |
tree | b3fb834044610b854de56790d860e35cbed3d8c7 /test | |
parent | f6128058013e9df6191c54e5d985153a86a215c0 (diff) | |
parent | cc67bc0541761fb857ed58ed3c9adbf7ee1b1a9b (diff) | |
download | ale-787ab2a36684838698a0173f29e82715420f117c.zip |
Merge pull request #3529 from krsch/master
phan: add filename to output
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_php_phan_handler.vader | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/handler/test_php_phan_handler.vader b/test/handler/test_php_phan_handler.vader index 23747925..bbdae5dd 100644 --- a/test/handler/test_php_phan_handler.vader +++ b/test/handler/test_php_phan_handler.vader @@ -11,11 +11,13 @@ Execute(The php static analyzer handler should parse errors from phan): \ 'lnum': 25, \ 'type': 'W', \ 'text': 'Return type of getValidator is undeclared type \Respect\Validation\Validator', + \ 'filename': 'example.php', \ }, \ { \ 'lnum': 66, \ 'type': 'W', \ 'text': 'Call to method string from undeclared class \Respect\Validation\Validator', + \ 'filename': 'example.php', \ }, \ ], \ ale_linters#php#phan#Handle(347, [ |