mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-02-10 00:18:40 +00:00
Create phan.php
This commit is contained in:
parent
eb109aaa2c
commit
4d79f8bded
20
Config/phan.php
Normal file
20
Config/phan.php
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
return [
|
||||||
|
'backward_compatibility_checks' => false,
|
||||||
|
'quick_mode' => false,
|
||||||
|
'analyze_signature_compatibility' => true,
|
||||||
|
'minimum_severity' => 0,
|
||||||
|
'allow_missing_properties' => false,
|
||||||
|
'null_casts_as_any_type' => false,
|
||||||
|
'null_casts_as_array' => false,
|
||||||
|
'array_casts_as_null' => false,
|
||||||
|
'scalar_implicit_cast' => false,
|
||||||
|
'scalar_implicit_partial' => [],
|
||||||
|
'ignore_undeclared_variables_in_global_scope' => false,
|
||||||
|
'suppress_issue_types' => [
|
||||||
|
// 'PhanUndeclaredMethod',
|
||||||
|
],
|
||||||
|
'whitelist_issue_types' => [
|
||||||
|
// 'PhanAccessMethodPrivate',
|
||||||
|
],
|
||||||
|
];
|
||||||
Loading…
Reference in New Issue
Block a user