-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
psalm.xml
90 lines (87 loc) · 2.87 KB
/
psalm.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0"?>
<psalm
autoloader="tests/bootstrap-static.php"
errorLevel="1"
reportMixedIssues="true"
sealAllMethods="true"
resolveFromConfigFile="true"
findUnusedBaselineEntry="true"
findUnusedCode="true"
maxShapedArraySize="200"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
errorBaseline="psalm-baseline.xml"
>
<projectFiles>
<directory name="app"/>
<directory name="public/setup"/>
<directory name="src"/>
<directory name="tests/end-to-end"/>
<directory name="tests/unit"/>
<file name="public/index.php"/>
<ignoreFiles>
<directory name="app/cache"/>
<directory name="vendor"/>
</ignoreFiles>
<ignoreFiles allowMissingFiles="true">
<file name="config.inc.php"/>
</ignoreFiles>
</projectFiles>
<stubs>
<file name="tests/stubs/uploadprogress.stub"/>
</stubs>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
</plugins>
<globals>
<var name="GLOBALS" type="array{
asfile: bool,
buffer_needed: bool,
cached_affected_rows: int|numeric-string,
charset: string,
charset_connection: string,
collation_connection: string,
complete_query: string,
compression: 'none'|'zip'|'gzip',
conn_error: string,
csv_columns: bool,
csv_enclosed: string,
csv_escaped: string,
csv_separator: string,
csv_terminated: string,
display_query: string,
errno: int,
error: bool,
excel_edition: 'win'|'mac_excel2003'|'mac_excel2008',
file_handle: resource|null,
finished: bool,
from_cookie: bool,
hostname: string,
import_file: string,
import_file_name: string,
import_text: string,
knjenc: string,
lang: string,
maximum_time: 0|positive-int,
maxsize: string,
memory_limit: int,
offset: int,
old_tz: string,
onfly_compression: bool,
output_charset_conversion: bool,
output_kanji_conversion: bool,
plugin_param: array{export_type: string, single_table: bool},
plugin_scripts: string[],
pma_auth_server: string,
PMA_PHP_SELF: string,
querytime: float|int,
read_limit: int,
save_on_server: bool,
SESSION_KEY: string,
showtable: array<string, string|null>,
tbl_storage_engine: string,
username: string
}"/>
</globals>
</psalm>