-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
psalm.xml
119 lines (116 loc) · 4.09 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?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,
codegen_format: 0|1,
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,
error_message: string,
excel_edition: 'win'|'mac_excel2003'|'mac_excel2008',
file_handle: resource|null,
finished: bool,
from_cookie: bool,
goto: string,
hostname: string,
import_file: string,
import_file_name: string,
import_text: string,
knjenc: string,
lang: string,
latex_data_caption: string,
latex_data_continued_caption: string,
latex_data_label: string,
latex_null: string,
latex_structure_caption: string,
latex_structure_continued_caption: string,
latex_structure_label: string,
maximum_time: 0|positive-int,
maxsize: string,
memory_limit: int,
message: PhpMyAdmin\Message,
ods_buffer: string,
odt_buffer: string,
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>,
sql_compatibility: 'NONE'|'ANSI'|'DB2'|'MAXDB'|'MYSQL323'|'MYSQL40'|'MSSQL'|'ORACLE'|'TRADITIONAL',
sql_constraints: string,
sql_constraints_query: string,
sql_drop_foreign_keys: string,
sql_if_not_exists: bool,
sql_ignore: bool,
sql_insert_syntax: 'complete'|'extended'|'both'|'none',
sql_max_query_size: 0|positive-int,
sql_query: string,
sql_structure_or_data: 'structure'|'data'|'structure_and_data',
sql_type: 'INSERT'|'UPDATE'|'REPLACE',
tbl_storage_engine: string,
token_mismatch: bool,
token_provided: bool,
urlParams: array,
username: string,
xml_export_triggers: bool,
xml_export_views: bool
}"/>
</globals>
</psalm>