Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update DOM stub and add separate SimpleXML stub #8140

Merged
merged 4 commits into from Jun 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions config.xsd
Expand Up @@ -695,6 +695,7 @@
<xs:enumeration value="mongodb"/>
<xs:enumeration value="mysqli"/>
<xs:enumeration value="pdo"/>
<xs:enumeration value="simplexml"/>
<xs:enumeration value="soap"/>
<xs:enumeration value="xdebug"/>
</xs:restriction>
Expand Down
2 changes: 2 additions & 0 deletions src/Psalm/Config.php
Expand Up @@ -585,6 +585,7 @@ class Config
* mongodb: bool,
* mysqli: bool,
* pdo: bool,
* simplexml: bool,
* soap: bool,
* xdebug: bool,
* }
Expand All @@ -598,6 +599,7 @@ class Config
"mongodb" => false,
"mysqli" => false,
"pdo" => false,
"simplexml" => false,
"soap" => false,
"xdebug" => false,
];
Expand Down