phpmyadmin/psalm.xml
Maurício Meneghini Fauth 4f4f31e7e9
Remove the file_handle global variable
Replaces it with Export::$fileHandle static property.

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2025-01-09 16:44:30 -03:00

53 lines
1.5 KiB
XML

<?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{
from_cookie: bool,
knjenc: string,
maxsize: string,
memory_limit: int,
old_tz: string,
onfly_compression: bool,
plugin_scripts: string[],
querytime: float|int
}"/>
</globals>
</psalm>