-
Notifications
You must be signed in to change notification settings - Fork 677
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
Deprecation message on loading php-ext stubs without explicitly declaring them as dependency or in a config #8885
Conversation
Thanks! As I was saying in the discussion, I'd also like if the psalm.xml creation came with loaded extension configured. Could you take a look? |
Do you think this is a task for this PR or ok to create it in a separate? Note,
while
Or do you want to run that check only for a specific list for ext? |
# Conflicts: # src/Psalm/Config.php
On this topic, @nikic recently classified PHP ext by 3 types, I think we can use this classification for Psalm also: https://wiki.php.net/rfc/namespaces_in_bundled_extensions :
|
It seems unnecessary to have special stubs for the first category. For the two others, we can handle the way we do now. Thanks! Please check if you can add the automatic loading in psalm's config, it would be weird to release without it (as we would create a config and complain that things are missing in the config on the first run! |
Note, Psalm init command often runs on developer's machine that may have more ext than needed (e.g. for another project you needed I can create a new PR to update |
Well, it's not really a big deal if we get more extensions than needed though. Worst case scenario:
If all those conditions are true, we could have a faulty code on production. But even then, it was just the behavior of Psalm until 5.0 (we assumed every extension was enabled) |
Is this a bug?
--- a/psalm.xml
+++ b/psalm.xml
@@ -16,4 +17,7 @@
<directory name="app/Views" />
</ignoreFiles>
</projectFiles>
+ <enableExtensions>
+ <extension name="redis"/>
+ </enableExtensions>
</psalm> $ vendor/bin/psalm
Problem parsing /.../psalm.xml:
Error on line 21:
Element '{https://getpsalm.org/schema/config}extension', attribute 'name': [facet 'enumeration'] The value 'redis' is not an element of the set {'decimal', 'dom', 'ds', 'geos', 'gmp', 'mongodb', 'mysqli', 'pdo', 'simplexml', 'soap', 'xdebug'}. |
This PR replaces #8881, based on #8879 (comment).
In this PR we keep existing Psalm 5 behaviour to load some stubs for PHP ext using
extension_loaded
, but additionally we display a deprecation note. Example forredis
: