-
Notifications
You must be signed in to change notification settings - Fork 660
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
Since annotations outside phpstub should not infer php version #10769
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ | |
use function explode; | ||
use function implode; | ||
use function in_array; | ||
use function pathinfo; | ||
use function preg_last_error_msg; | ||
use function preg_match; | ||
use function preg_replace; | ||
|
@@ -37,6 +38,8 @@ | |
use function substr_count; | ||
use function trim; | ||
|
||
use const PATHINFO_EXTENSION; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
|
@@ -417,11 +420,15 @@ public static function parse( | |
|
||
if (isset($parsed_docblock->tags['since'])) { | ||
$since = trim(reset($parsed_docblock->tags['since'])); | ||
if (preg_match('/^[4578]\.\d(\.\d+)?$/', $since)) { | ||
$since_parts = explode('.', $since); | ||
|
||
$info->since_php_major_version = (int)$since_parts[0]; | ||
$info->since_php_minor_version = (int)$since_parts[1]; | ||
// only for phpstub files or @since 8.0.0 PHP | ||
// since @since is commonly used with the project version, not the PHP version | ||
// https://docs.phpdoc.org/3.0/guide/references/phpdoc/tags/since.html | ||
// https://github.com/vimeo/psalm/issues/10761 | ||
if (preg_match('/^([4578])\.(\d)(\.\d+)?(\s+PHP)?$/i', $since, $since_match) | ||
&& isset($since_match[1])&& isset($since_match[2]) | ||
&& (!empty($since_match[4]) || pathinfo($code_location->file_name, PATHINFO_EXTENSION) === 'phpstub')) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It'll do for now, but we should probably limit this to only the stubs Psalm itself ships in future. When I renamed the stubs I didn't want There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, I think this is a positive, but unintended side effect - we use stubs for a couple PHP extensions where we use the @SInCE annotation for the PHP version this feature become available and named all those .phpstub too. I think it would be ideal if Therefore this won't require a change in the future, just some documentation about the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Many plugins use |
||
$info->since_php_major_version = (int)$since_match[1]; | ||
$info->since_php_minor_version = (int)$since_match[2]; | ||
} | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note to self: we keep forgetting to update PHP version numbers in different places. This means we need to centralize PHP version handling in a single place.