mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
9027bc6190
The idea behind this is that Psalm should not use project autoloader for its own things. So if we have a project with autoloader and no code, then any project autoloader hit means Psalm failed to load something itself. Right now it highlights several issues in CoreGenericClasses stub: - usage of `callback` instead of `callable` - `@property-read` not resolving template parameters
14 lines
396 B
XML
14 lines
396 B
XML
<?xml version="1.0"?>
|
|
<psalm
|
|
totallyTyped="true"
|
|
autoloader="autoloader.php"
|
|
resolveFromConfigFile="true"
|
|
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"
|
|
>
|
|
<projectFiles>
|
|
<file name="file.php" />
|
|
</projectFiles>
|
|
</psalm>
|