Skip to content
Snippets Groups Projects
Unverified Commit 6d5f4432 authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #9313 from nextcloud/phan-check-php-doc

Check doc block signature to match the specified return type
parents 8b061634 13b503a1
No related branches found
No related tags found
No related merge requests found
......@@ -144,6 +144,12 @@ return [
// to fix in your code base.
'quick_mode' => false,
// If true, check to make sure the return type declared
// in the doc-block (if any) matches the return type
// declared in the method signature. This process is
// slow.
'check_docblock_signature_param_type_match' => true,
// If enabled, check all methods that override a
// parent method to make sure its signature is
// compatible with the parent's. This check
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment